1
0
Fork 0

Initial import

This commit is contained in:
Daniele Tricoli 2022-04-27 19:04:35 +02:00
commit 73fab49f88
1 changed files with 25 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@ -0,0 +1,25 @@
---
version: "3"
services:
grocy:
image: lscr.io/linuxserver/grocy
container_name: grocy
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TIMEZONE}
volumes:
- /srv/grocy:/config
restart: unless-stopped
networks:
- proxy
- default
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.http.routers.grocy.entrypoints=websecure"
- "traefik.http.routers.grocy.rule=Host(${HOST})"
networks:
proxy:
external: true