From 30e966bf741a10ce3b50cc985282e319d7362143 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 5 Dec 2025 13:34:03 -0500 Subject: [PATCH] Added a grocy compose file --- grocy/compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 grocy/compose.yml 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