diff --git a/grocy/compose.yml b/grocy/compose.yml new file mode 100644 index 0000000..ff719c8 --- /dev/null +++ b/grocy/compose.yml @@ -0,0 +1,18 @@ +--- +# volumes: +# grocy.vol: +services: + grocy: + image: lscr.io/linuxserver/grocy:latest + container_name: grocy + environment: + - PUID=$(id -u $USER) + - PGID=$(id -u $USER) + - TZ=Etc/UTC + volumes: + # - grocy.vol:/data + - ~/.config/grocy:/config + - /etc/timezone:/etc/timezone:ro + ports: + - 9283:9283 + restart: unless-stopped