mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
first commit
This commit is contained in:
commit
149e02a10d
72 changed files with 3442 additions and 0 deletions
1
grocy/README.md
Normal file
1
grocy/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# Compose file for grocy
|
33
grocy/compose.yaml
Normal file
33
grocy/compose.yaml
Normal file
|
@ -0,0 +1,33 @@
|
|||
services:
|
||||
grocy:
|
||||
image: lscr.io/linuxserver/grocy:latest
|
||||
container_name: grocy
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Australia/Perth
|
||||
- GROCY_FEATURE_FLAG_RECIPES=false
|
||||
- GROCY_FEATURE_FLAG_SHOPPINGLIST=false
|
||||
- GROCY_FEATURE_FLAG_STOCK=false
|
||||
- GROCY_CURRENCY=AUD
|
||||
networks:
|
||||
- default
|
||||
- proxy
|
||||
ports:
|
||||
- 9192:80
|
||||
volumes:
|
||||
- grocy_config:/config
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
caddy: grocy.ferngarden.net
|
||||
caddy.import: internal
|
||||
caddy.reverse_proxy: "{{upstreams 80}}"
|
||||
|
||||
networks:
|
||||
default:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
grocy_config:
|
||||
name: grocy_config
|
Loading…
Add table
Add a link
Reference in a new issue