fix: changed volume bind mount to correct host path

This commit is contained in:
2025-12-05 15:11:22 -05:00
parent a4578890ad
commit f2e09ff322

View File

@@ -23,7 +23,6 @@ services:
- frontend - frontend
volumes: volumes:
- gitea.vol:/data - gitea.vol:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
- 3000:3000 - 3000:3000
@@ -37,7 +36,8 @@ services:
- 2222:2223 - 2222:2223
volumes: volumes:
- opengist.vol:/opengist - opengist.vol:/opengist
- ~/.config/opengist/config.yml:/config.yml" - ~/.config/opengist/config.yml:/config.yml
- /etc/localtime:/etc/localtime:ro
environment: environment:
OG_LOG_LEVEL: warn OG_LOG_LEVEL: warn
OG_SSH_PORT: 22 OG_SSH_PORT: 22
@@ -56,7 +56,7 @@ services:
volumes: volumes:
# - grocy.vol:/data # - grocy.vol:/data
- ~/.config/grocy:/config - ~/.config/grocy:/config
- /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
- 9283:9283 - 9283:9283
restart: unless-stopped restart: unless-stopped