From 73fab49f887a478463c26c16da84f33237500862 Mon Sep 17 00:00:00 2001 From: Daniele Tricoli Date: Wed, 27 Apr 2022 19:04:35 +0200 Subject: [PATCH] Initial import --- docker-compose.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d7a7b4c --- /dev/null +++ b/docker-compose.yml @@ -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