Skip to content

Commit

Permalink
add env 'DOCKER_VOLUME_STORAGE' for volume path customization
Browse files Browse the repository at this point in the history
  • Loading branch information
l4rm4nd committed Feb 25, 2023
1 parent 1d2ab51 commit ce70d88
Show file tree
Hide file tree
Showing 70 changed files with 167 additions and 168 deletions.
2 changes: 1 addition & 1 deletion 0_skeleton/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
#- /etc/localtime:/etc/localtime:ro
#- /etc/timezone:/etc/timezone:ro
#- /var/run/docker.sock:/var/run/docker.sock:ro
- /mnt/docker-volumes/example:/opt/example/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/example:/opt/example/data
environment:
- PUID=1000
- PGID=1000
Expand Down
2 changes: 1 addition & 1 deletion examples/adguard-home-sync/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ services:
- PGID=1000
restart: unless-stopped
volumes:
- /mnt/docker-volumes/adguard-home-sync:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home-sync:/config
4 changes: 2 additions & 2 deletions examples/adguard-home/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ services:
- 53:53/udp
restart: unless-stopped
volumes:
- /mnt/docker-volumes/adguard-home/work:/opt/adguardhome/work
- /mnt/docker-volumes/adguard-home/conf:/opt/adguardhome/conf
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home/work:/opt/adguardhome/work
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home/conf:/opt/adguardhome/conf
2 changes: 1 addition & 1 deletion examples/answer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ services:
- '9080:80'
restart: unless-stopped
volumes:
- /mnt/docker-volumes/answer/data:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/answer/data:/data
4 changes: 2 additions & 2 deletions examples/bitwarden-unified/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
ports:
- "8888:8080"
volumes:
- /mnt/docker-volumes/bitwarden-unified/data:/etc/bitwarden
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bitwarden-unified/data:/etc/bitwarden

db:
environment:
Expand All @@ -25,4 +25,4 @@ services:
container_name: bitwarden_unified_db
restart: always
volumes:
- /mnt/docker-volumes/bitwarden-unified/mariadb:/var/lib/mysql
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bitwarden-unified/mariadb:/var/lib/mysql
4 changes: 2 additions & 2 deletions examples/bookstack/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- DB_PASS=USERPW1
- DB_DATABASE=bookstackapp
volumes:
- /mnt/docker-volumes/bookstack/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bookstack/config:/config
restart: unless-stopped
ports:
- 8099:80
Expand All @@ -34,5 +34,5 @@ services:
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=USERPW1
volumes:
- /mnt/docker-volumes/bookstack/mariadb-config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bookstack/mariadb-config:/config
restart: unless-stopped
6 changes: 3 additions & 3 deletions examples/caddy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ services:
- "80:80"
- "443:443"
volumes:
- /mnt/docker-volumes/caddy/CaddyFile:/etc/caddy/Caddyfile
- /mnt/docker-volumes/caddy/data:/data
- /mnt/docker-volumes/caddy/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/CaddyFile:/etc/caddy/Caddyfile
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/data:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/config:/config
2 changes: 1 addition & 1 deletion examples/changedetection/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /mnt/docker-volumes/changedetection/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/changedetection/config:/config
ports:
- 5000:5000
restart: unless-stopped
Expand Down
2 changes: 1 addition & 1 deletion examples/code-server/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- PROXY_DOMAIN=vscode.example.com #optional
- DEFAULT_WORKSPACE=/config/workspace #optional
volumes:
- /mnt/docker-volumes/vscode/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/vscode/config:/config
ports:
- 8443:8443
restart: unless-stopped
4 changes: 2 additions & 2 deletions examples/dashy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ services:
hostname: dashy
image: lissy93/dashy
volumes:
- /mnt/docker-volumes/dashy/config/config.yml:/app/public/conf.yml
- /mnt/docker-volumes/dashy/icons:/app/public/item-icons
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/config/config.yml:/app/public/conf.yml
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/icons:/app/public/item-icons
environment:
- NODE_ENV=production
- UID=1000
Expand Down
4 changes: 2 additions & 2 deletions examples/deemix/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ services:
image: registry.gitlab.com/bockiii/deemix-docker:latest
restart: unless-stopped
volumes:
- /mnt/docker-volumes/deemix/config:/config
- /mnt/docker-volumes/deemix/downloads:/downloads
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/downloads:/downloads
4 changes: 2 additions & 2 deletions examples/domainmod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
- DOMAINMOD_USER=domainmod
- DOMAINMOD_PASSWORD=password1
volumes:
- /mnt/docker-volumes/domainmod/app:/var/www/html
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/domainmod/app:/var/www/html
ports:
- 8080:80
restart: unless-stopped
Expand All @@ -34,7 +34,7 @@ services:
- MYSQL_PASSWORD=password1
- MYSQL_ROOT_PASSWORD=password2
volumes:
- /mnt/docker-volumes/domainmod/database:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/domainmod/database:/config
#ports:
# - 3306
restart: unless-stopped
2 changes: 1 addition & 1 deletion examples/drone/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
dns:
- 192.168.178.100 # specify your internal dns server for proper dns lookups; especially if you are using https and hostnames
volumes:
- /mnt/docker-volumes/drone/data:/var/lib/drone
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/drone/data:/var/lib/drone
#- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- DRONE_DEBUG=true
Expand Down
2 changes: 1 addition & 1 deletion examples/droppy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
ports:
- 8989:8989
volumes:
- /mnt/docker-volumes/droppy/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/droppy/config:/config
- /path/to/my/data/for/sharing:/files # path to shared files
environment:
- UID=1000
Expand Down
6 changes: 3 additions & 3 deletions examples/duplicacy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ services:
ports:
- "3875:3875/tcp"
volumes:
- /mnt/docker-volumes/duplicacy-web/config:/config
- /mnt/docker-volumes/duplicacy-web/logs:/logs
- /mnt/docker-volumes/duplicacy-web/cache:/cache
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/logs:/logs
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/cache:/cache
- /path/to/my/data/dir1:/data/dir1:ro # 1st path to your data for backup
- /path/to/my/data/dir2:/data/dir2:ro # 2nd path to your data for backup
4 changes: 2 additions & 2 deletions examples/duplicati/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ services:
# - traefik.http.routers.duplicati.middlewares=local-ipwhitelist@file
restart: unless-stopped
volumes:
- /mnt/docker-volumes/duplicati/backups:/backups
- /mnt/docker-volumes/duplicati/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
- /path/to/my/data/to/backup:/source # change this
4 changes: 2 additions & 2 deletions examples/fail2ban/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ services:
network_mode: host
restart: unless-stopped
volumes:
- /mnt/docker-volumes/fail2Ban/data:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/fail2Ban/data:/data
- /path/to/my/logs/to/monitor:/var/log
#- /mnt/docker-volumes/traefik/logs:/var/log/traefik
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/traefik/logs:/var/log/traefik
4 changes: 2 additions & 2 deletions examples/firefly-iii/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
container_name: firefly
restart: unless-stopped
volumes:
- /mnt/docker-volumes/firefly/upload:/var/www/html/storage/upload
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/firefly/upload:/var/www/html/storage/upload
env_file: .env
ports:
- 80:8080
Expand All @@ -23,4 +23,4 @@ services:
- MYSQL_PASSWORD=MySecretDatabasePassword # if changed --> also update in .env file
- MYSQL_DATABASE=firefly
volumes:
- /mnt/docker-volumes/firefly/mysql:/var/lib/mysql
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/firefly/mysql:/var/lib/mysql
2 changes: 1 addition & 1 deletion examples/flame/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: pawelmalak/flame
container_name: flame
volumes:
- /mnt/docker-volumes/flame:/app/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/flame:/app/data
#- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
ports:
- 5005:5005
Expand Down
4 changes: 2 additions & 2 deletions examples/ghost/docker-compose-rpi-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- 8080:2368
volumes:
- /mnt/docker-volumes/ghost/content:/var/lib/ghost/content
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/content:/var/lib/ghost/content
environment:
# see https://ghost.org/docs/config/#configuration-options
database__client: mysql
Expand Down Expand Up @@ -37,5 +37,5 @@ services:
- MYSQL_USER=ghost_dbuser
- MYSQL_PASSWORD=SecureDatabasePassword
volumes:
- /mnt/docker-volumes/ghost/mariadb/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/mariadb/config:/config
restart: unless-stopped
4 changes: 2 additions & 2 deletions examples/ghost/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ports:
- 8080:2368
volumes:
- /mnt/docker-volumes/ghost/content:/var/lib/ghost/content
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/content:/var/lib/ghost/content
environment:
# see https://ghost.org/docs/config/#configuration-options
database__client: mysql
Expand Down Expand Up @@ -37,7 +37,7 @@ services:
container_name: ghost_db
restart: always
volumes:
- /mnt/docker-volumes/ghost/mysql:/var/lib/mysql
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/mysql:/var/lib/mysql
#ports:
# - "13928:3306"
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/gitea/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
image: gitea/gitea:latest
restart: unless-stopped
volumes:
- /mnt/docker-volumes/gitea/data:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitea/data:/data
#labels:
# - traefik.enable=true
# - traefik.http.routers.gitea.rule=Host(`git.example.com`)
Expand Down
8 changes: 4 additions & 4 deletions examples/gitlab-ce/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ services:
- 8434:443 # HTTPS
- 2222:22 # SSH
volumes:
- /mnt/docker-volumes/gitlab/config:/etc/gitlab
- /mnt/docker-volumes/gitlab/logs:/var/log/gitlab
- /mnt/docker-volumes/gitlab/data:/var/opt/gitlab
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/config:/etc/gitlab
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/logs:/var/log/gitlab
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/data:/var/opt/gitlab

gitlab-runner:
image: gitlab/gitlab-runner:alpine
Expand All @@ -24,4 +24,4 @@ services:
- gitlab-ce
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /mnt/docker-volumes/gitlab/runner:/etc/gitlab-runner
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/runner:/etc/gitlab-runner
4 changes: 2 additions & 2 deletions examples/gokapi/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ services:
ports:
- 53842:53842
volumes:
- /mnt/docker-volumes/gokapi/data:/app/data
- /mnt/docker-volumes/gokapi/config:/app/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gokapi/data:/app/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gokapi/config:/app/config
2 changes: 1 addition & 1 deletion examples/grafana-monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
volumes:
- /var/log:/var/log:ro # let promtail access the docker host's log files
- ./volume-data/promtail:/etc/promtail # place promtail-config.yml
#- /mnt/docker-volumes/traefik/logs:/var/log/traefik # let promtail access your traefik reverse logs
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/traefik/logs:/var/log/traefik # let promtail access your traefik reverse logs
restart: unless-stopped
command: -config.file=/etc/promtail/promtail-config.yml
#networks:
Expand Down
6 changes: 3 additions & 3 deletions examples/greenbone/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ services:
gvm:
image: securecompliance/gvm
volumes:
- /mnt/docker-volumes/greenbone/database:/opt/database
- /mnt/docker-volumes/greenbone/gvm:/var/lib/gvm
- /mnt/docker-volumes/greenbone/plugins:/var/lib/openvas/plugins
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/database:/opt/database
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/gvm:/var/lib/gvm
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/plugins:/var/lib/openvas/plugins
environment:
- USERNAME="admin"
- PASSWORD="admin"
Expand Down
2 changes: 1 addition & 1 deletion examples/heimdall/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ services:
image: linuxserver/heimdall:latest
restart: unless-stopped
volumes:
- /mnt/docker-volumes/heimdall:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/heimdall:/config
4 changes: 2 additions & 2 deletions examples/hemmelig/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
hostname: hemmelig
init: true
volumes:
- /mnt/docker-volumes/hemmelig/files:/var/tmp/hemmelig/upload/files
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/files:/var/tmp/hemmelig/upload/files
environment:
- SECRET_REDIS_HOST=hemmelig-redis # Override this for your redis host address
- SECRET_LOCAL_HOSTNAME=0.0.0.0 # The local hostname for the fastify instance
Expand Down Expand Up @@ -42,7 +42,7 @@ services:
init: true
# Enable to make redis data persistent
volumes:
- /mnt/docker-volumes/hemmelig/redis/:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/redis/:/data
command: redis-server --appendonly yes
restart: always
stop_grace_period: 1m
Expand Down
4 changes: 2 additions & 2 deletions examples/homarr/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- PASSWORD=MySecureLoginPassword
- TZ="Europe/Berlin"
volumes:
- /mnt/docker-volumes/homarr/configs:/app/data/configs
#- /mnt/docker-volumes/homarr/icons:/app/public/icons # optional for custom icons
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homarr/configs:/app/data/configs
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homarr/icons:/app/public/icons # optional for custom icons
ports:
- '7575:7575'
2 changes: 1 addition & 1 deletion examples/homeassistant/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- PGID=1000
- TZ=Europe/Berlin
volumes:
- /mnt/docker-volumes/homeassistant/config:/config
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homeassistant/config:/config
#ports:
# - 8123:8123 #optional
#devices:
Expand Down
4 changes: 2 additions & 2 deletions examples/homepage/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ services:
- PUID=1000
- PGID=1000
volumes:
- /mnt/docker-volumes/homepage/config:/app/config # Make sure your local config directory exists
- /mnt/docker-volumes/homepage/icons:/app/public/icons
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homepage/config:/app/config # Make sure your local config directory exists
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homepage/icons:/app/public/icons
# - /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
#labels:
# - traefik.enable=true
Expand Down
2 changes: 1 addition & 1 deletion examples/homer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: b4bz/homer:latest
container_name: homer
volumes:
- /mnt/docker-volumes/homer:/www/assets
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
restart: unless-stopped
environment:
- UID=1000
Expand Down
6 changes: 3 additions & 3 deletions examples/matomo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
ports:
- 8099:80
volumes:
- /mnt/docker-volumes/matomo/apache/apache2.conf:/etc/apache2/apache2.conf:ro
- /mnt/docker-volumes/matomo/html:/var/www/html
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/apache/apache2.conf:/etc/apache2/apache2.conf:ro
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/html:/var/www/html
environment:
- MATOMO_DATABASE_HOST=matomo_db
#- VIRTUAL_HOST=matomo.example.com
Expand Down Expand Up @@ -38,4 +38,4 @@ services:
- ./db.env
restart: unless-stopped
volumes:
- /mnt/docker-volumes/matomo/database:/var/lib/mysql
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/database:/var/lib/mysql
4 changes: 2 additions & 2 deletions examples/mirotalk/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ services:
- 3000:3000 # WEB UI;
volumes:
- .env:/src/.env:ro
- /mnt/docker-volumes/mirotalk/app:/src/app:ro
- /mnt/docker-volumes/mirotalk/public:/src/public:ro
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/app:/src/app:ro
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/public:/src/public:ro
#labels:
#- traefik.enable=true
#- traefik.http.routers.mirotalk.rule=Host(`meet.example.com`) # pls adjust
Expand Down
2 changes: 1 addition & 1 deletion examples/money-balancer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ services:
ports:
- 8000:8000
volumes:
- /mnt/docker-volumes/money-balancer/data:/data
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/money-balancer/data:/data
environment:
- JWT_SECRET=ThisIsAVerySecretString # change this
Loading

0 comments on commit ce70d88

Please sign in to comment.