You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
528 B
25 lines
528 B
--- |
|
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
|
|
|