Skip to content

Commit ce70d88

Browse files
committed
add env 'DOCKER_VOLUME_STORAGE' for volume path customization
1 parent 1d2ab51 commit ce70d88

File tree

70 files changed

+167
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+167
-168
lines changed

0_skeleton/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
#- /etc/localtime:/etc/localtime:ro
1414
#- /etc/timezone:/etc/timezone:ro
1515
#- /var/run/docker.sock:/var/run/docker.sock:ro
16-
- /mnt/docker-volumes/example:/opt/example/data
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/example:/opt/example/data
1717
environment:
1818
- PUID=1000
1919
- PGID=1000

examples/adguard-home-sync/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ services:
1818
- PGID=1000
1919
restart: unless-stopped
2020
volumes:
21-
- /mnt/docker-volumes/adguard-home-sync:/config
21+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home-sync:/config

examples/adguard-home/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ services:
1111
- 53:53/udp
1212
restart: unless-stopped
1313
volumes:
14-
- /mnt/docker-volumes/adguard-home/work:/opt/adguardhome/work
15-
- /mnt/docker-volumes/adguard-home/conf:/opt/adguardhome/conf
14+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home/work:/opt/adguardhome/work
15+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home/conf:/opt/adguardhome/conf

examples/answer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ services:
77
- '9080:80'
88
restart: unless-stopped
99
volumes:
10-
- /mnt/docker-volumes/answer/data:/data
10+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/answer/data:/data

examples/bitwarden-unified/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
ports:
1414
- "8888:8080"
1515
volumes:
16-
- /mnt/docker-volumes/bitwarden-unified/data:/etc/bitwarden
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bitwarden-unified/data:/etc/bitwarden
1717

1818
db:
1919
environment:
@@ -25,4 +25,4 @@ services:
2525
container_name: bitwarden_unified_db
2626
restart: always
2727
volumes:
28-
- /mnt/docker-volumes/bitwarden-unified/mariadb:/var/lib/mysql
28+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bitwarden-unified/mariadb:/var/lib/mysql

examples/bookstack/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- DB_PASS=USERPW1
1515
- DB_DATABASE=bookstackapp
1616
volumes:
17-
- /mnt/docker-volumes/bookstack/config:/config
17+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bookstack/config:/config
1818
restart: unless-stopped
1919
ports:
2020
- 8099:80
@@ -34,5 +34,5 @@ services:
3434
- MYSQL_USER=bookstack
3535
- MYSQL_PASSWORD=USERPW1
3636
volumes:
37-
- /mnt/docker-volumes/bookstack/mariadb-config:/config
37+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bookstack/mariadb-config:/config
3838
restart: unless-stopped

examples/caddy/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ services:
1010
- "80:80"
1111
- "443:443"
1212
volumes:
13-
- /mnt/docker-volumes/caddy/CaddyFile:/etc/caddy/Caddyfile
14-
- /mnt/docker-volumes/caddy/data:/data
15-
- /mnt/docker-volumes/caddy/config:/config
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/CaddyFile:/etc/caddy/Caddyfile
14+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/data:/data
15+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/config:/config

examples/changedetection/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- PGID=1000
99
- TZ=Europe/Berlin
1010
volumes:
11-
- /mnt/docker-volumes/changedetection/config:/config
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/changedetection/config:/config
1212
ports:
1313
- 5000:5000
1414
restart: unless-stopped

examples/code-server/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- PROXY_DOMAIN=vscode.example.com #optional
1515
- DEFAULT_WORKSPACE=/config/workspace #optional
1616
volumes:
17-
- /mnt/docker-volumes/vscode/config:/config
17+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/vscode/config:/config
1818
ports:
1919
- 8443:8443
2020
restart: unless-stopped

examples/dashy/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ services:
66
hostname: dashy
77
image: lissy93/dashy
88
volumes:
9-
- /mnt/docker-volumes/dashy/config/config.yml:/app/public/conf.yml
10-
- /mnt/docker-volumes/dashy/icons:/app/public/item-icons
9+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/config/config.yml:/app/public/conf.yml
10+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/icons:/app/public/item-icons
1111
environment:
1212
- NODE_ENV=production
1313
- UID=1000

examples/deemix/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ services:
1010
image: registry.gitlab.com/bockiii/deemix-docker:latest
1111
restart: unless-stopped
1212
volumes:
13-
- /mnt/docker-volumes/deemix/config:/config
14-
- /mnt/docker-volumes/deemix/downloads:/downloads
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/config:/config
14+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/deemix/downloads:/downloads

examples/domainmod/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
- DOMAINMOD_USER=domainmod
1818
- DOMAINMOD_PASSWORD=password1
1919
volumes:
20-
- /mnt/docker-volumes/domainmod/app:/var/www/html
20+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/domainmod/app:/var/www/html
2121
ports:
2222
- 8080:80
2323
restart: unless-stopped
@@ -34,7 +34,7 @@ services:
3434
- MYSQL_PASSWORD=password1
3535
- MYSQL_ROOT_PASSWORD=password2
3636
volumes:
37-
- /mnt/docker-volumes/domainmod/database:/config
37+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/domainmod/database:/config
3838
#ports:
3939
# - 3306
4040
restart: unless-stopped

examples/drone/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
dns:
99
- 192.168.178.100 # specify your internal dns server for proper dns lookups; especially if you are using https and hostnames
1010
volumes:
11-
- /mnt/docker-volumes/drone/data:/var/lib/drone
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/drone/data:/var/lib/drone
1212
#- /var/run/docker.sock:/var/run/docker.sock:ro
1313
environment:
1414
- DRONE_DEBUG=true

examples/droppy/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
ports:
88
- 8989:8989
99
volumes:
10-
- /mnt/docker-volumes/droppy/config:/config
10+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/droppy/config:/config
1111
- /path/to/my/data/for/sharing:/files # path to shared files
1212
environment:
1313
- UID=1000

examples/duplicacy/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ services:
1414
ports:
1515
- "3875:3875/tcp"
1616
volumes:
17-
- /mnt/docker-volumes/duplicacy-web/config:/config
18-
- /mnt/docker-volumes/duplicacy-web/logs:/logs
19-
- /mnt/docker-volumes/duplicacy-web/cache:/cache
17+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/config:/config
18+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/logs:/logs
19+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicacy-web/cache:/cache
2020
- /path/to/my/data/dir1:/data/dir1:ro # 1st path to your data for backup
2121
- /path/to/my/data/dir2:/data/dir2:ro # 2nd path to your data for backup

examples/duplicati/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ services:
2323
# - traefik.http.routers.duplicati.middlewares=local-ipwhitelist@file
2424
restart: unless-stopped
2525
volumes:
26-
- /mnt/docker-volumes/duplicati/backups:/backups
27-
- /mnt/docker-volumes/duplicati/config:/config
26+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/backups:/backups
27+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/duplicati/config:/config
2828
- /path/to/my/data/to/backup:/source # change this

examples/fail2ban/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ services:
1313
network_mode: host
1414
restart: unless-stopped
1515
volumes:
16-
- /mnt/docker-volumes/fail2Ban/data:/data
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/fail2Ban/data:/data
1717
- /path/to/my/logs/to/monitor:/var/log
18-
#- /mnt/docker-volumes/traefik/logs:/var/log/traefik
18+
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/traefik/logs:/var/log/traefik

examples/firefly-iii/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
container_name: firefly
77
restart: unless-stopped
88
volumes:
9-
- /mnt/docker-volumes/firefly/upload:/var/www/html/storage/upload
9+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/firefly/upload:/var/www/html/storage/upload
1010
env_file: .env
1111
ports:
1212
- 80:8080
@@ -23,4 +23,4 @@ services:
2323
- MYSQL_PASSWORD=MySecretDatabasePassword # if changed --> also update in .env file
2424
- MYSQL_DATABASE=firefly
2525
volumes:
26-
- /mnt/docker-volumes/firefly/mysql:/var/lib/mysql
26+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/firefly/mysql:/var/lib/mysql

examples/flame/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: pawelmalak/flame
66
container_name: flame
77
volumes:
8-
- /mnt/docker-volumes/flame:/app/data
8+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/flame:/app/data
99
#- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
1010
ports:
1111
- 5005:5005

examples/ghost/docker-compose-rpi-arm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
ports:
99
- 8080:2368
1010
volumes:
11-
- /mnt/docker-volumes/ghost/content:/var/lib/ghost/content
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/content:/var/lib/ghost/content
1212
environment:
1313
# see https://ghost.org/docs/config/#configuration-options
1414
database__client: mysql
@@ -37,5 +37,5 @@ services:
3737
- MYSQL_USER=ghost_dbuser
3838
- MYSQL_PASSWORD=SecureDatabasePassword
3939
volumes:
40-
- /mnt/docker-volumes/ghost/mariadb/config:/config
40+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/mariadb/config:/config
4141
restart: unless-stopped

examples/ghost/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
ports:
99
- 8080:2368
1010
volumes:
11-
- /mnt/docker-volumes/ghost/content:/var/lib/ghost/content
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/content:/var/lib/ghost/content
1212
environment:
1313
# see https://ghost.org/docs/config/#configuration-options
1414
database__client: mysql
@@ -37,7 +37,7 @@ services:
3737
container_name: ghost_db
3838
restart: always
3939
volumes:
40-
- /mnt/docker-volumes/ghost/mysql:/var/lib/mysql
40+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/ghost/mysql:/var/lib/mysql
4141
#ports:
4242
# - "13928:3306"
4343
environment:

examples/gitea/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
image: gitea/gitea:latest
1414
restart: unless-stopped
1515
volumes:
16-
- /mnt/docker-volumes/gitea/data:/data
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitea/data:/data
1717
#labels:
1818
# - traefik.enable=true
1919
# - traefik.http.routers.gitea.rule=Host(`git.example.com`)

examples/gitlab-ce/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ services:
1212
- 8434:443 # HTTPS
1313
- 2222:22 # SSH
1414
volumes:
15-
- /mnt/docker-volumes/gitlab/config:/etc/gitlab
16-
- /mnt/docker-volumes/gitlab/logs:/var/log/gitlab
17-
- /mnt/docker-volumes/gitlab/data:/var/opt/gitlab
15+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/config:/etc/gitlab
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/logs:/var/log/gitlab
17+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/data:/var/opt/gitlab
1818

1919
gitlab-runner:
2020
image: gitlab/gitlab-runner:alpine
@@ -24,4 +24,4 @@ services:
2424
- gitlab-ce
2525
volumes:
2626
- /var/run/docker.sock:/var/run/docker.sock
27-
- /mnt/docker-volumes/gitlab/runner:/etc/gitlab-runner
27+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gitlab/runner:/etc/gitlab-runner

examples/gokapi/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ services:
88
ports:
99
- 53842:53842
1010
volumes:
11-
- /mnt/docker-volumes/gokapi/data:/app/data
12-
- /mnt/docker-volumes/gokapi/config:/app/config
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gokapi/data:/app/data
12+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/gokapi/config:/app/config

examples/grafana-monitoring/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
volumes:
2626
- /var/log:/var/log:ro # let promtail access the docker host's log files
2727
- ./volume-data/promtail:/etc/promtail # place promtail-config.yml
28-
#- /mnt/docker-volumes/traefik/logs:/var/log/traefik # let promtail access your traefik reverse logs
28+
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/traefik/logs:/var/log/traefik # let promtail access your traefik reverse logs
2929
restart: unless-stopped
3030
command: -config.file=/etc/promtail/promtail-config.yml
3131
#networks:

examples/greenbone/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ services:
33
gvm:
44
image: securecompliance/gvm
55
volumes:
6-
- /mnt/docker-volumes/greenbone/database:/opt/database
7-
- /mnt/docker-volumes/greenbone/gvm:/var/lib/gvm
8-
- /mnt/docker-volumes/greenbone/plugins:/var/lib/openvas/plugins
6+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/database:/opt/database
7+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/gvm:/var/lib/gvm
8+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/greenbone/plugins:/var/lib/openvas/plugins
99
environment:
1010
- USERNAME="admin"
1111
- PASSWORD="admin"

examples/heimdall/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ services:
1313
image: linuxserver/heimdall:latest
1414
restart: unless-stopped
1515
volumes:
16-
- /mnt/docker-volumes/heimdall:/config
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/heimdall:/config

examples/hemmelig/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
hostname: hemmelig
66
init: true
77
volumes:
8-
- /mnt/docker-volumes/hemmelig/files:/var/tmp/hemmelig/upload/files
8+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/files:/var/tmp/hemmelig/upload/files
99
environment:
1010
- SECRET_REDIS_HOST=hemmelig-redis # Override this for your redis host address
1111
- SECRET_LOCAL_HOSTNAME=0.0.0.0 # The local hostname for the fastify instance
@@ -42,7 +42,7 @@ services:
4242
init: true
4343
# Enable to make redis data persistent
4444
volumes:
45-
- /mnt/docker-volumes/hemmelig/redis/:/data
45+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/hemmelig/redis/:/data
4646
command: redis-server --appendonly yes
4747
restart: always
4848
stop_grace_period: 1m

examples/homarr/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- PASSWORD=MySecureLoginPassword
99
- TZ="Europe/Berlin"
1010
volumes:
11-
- /mnt/docker-volumes/homarr/configs:/app/data/configs
12-
#- /mnt/docker-volumes/homarr/icons:/app/public/icons # optional for custom icons
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homarr/configs:/app/data/configs
12+
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homarr/icons:/app/public/icons # optional for custom icons
1313
ports:
1414
- '7575:7575'

examples/homeassistant/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- PGID=1000
1111
- TZ=Europe/Berlin
1212
volumes:
13-
- /mnt/docker-volumes/homeassistant/config:/config
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homeassistant/config:/config
1414
#ports:
1515
# - 8123:8123 #optional
1616
#devices:

examples/homepage/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ services:
1010
- PUID=1000
1111
- PGID=1000
1212
volumes:
13-
- /mnt/docker-volumes/homepage/config:/app/config # Make sure your local config directory exists
14-
- /mnt/docker-volumes/homepage/icons:/app/public/icons
13+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homepage/config:/app/config # Make sure your local config directory exists
14+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homepage/icons:/app/public/icons
1515
# - /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
1616
#labels:
1717
# - traefik.enable=true

examples/homer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: b4bz/homer:latest
66
container_name: homer
77
volumes:
8-
- /mnt/docker-volumes/homer:/www/assets
8+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
99
restart: unless-stopped
1010
environment:
1111
- UID=1000

examples/matomo/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ services:
77
ports:
88
- 8099:80
99
volumes:
10-
- /mnt/docker-volumes/matomo/apache/apache2.conf:/etc/apache2/apache2.conf:ro
11-
- /mnt/docker-volumes/matomo/html:/var/www/html
10+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/apache/apache2.conf:/etc/apache2/apache2.conf:ro
11+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/html:/var/www/html
1212
environment:
1313
- MATOMO_DATABASE_HOST=matomo_db
1414
#- VIRTUAL_HOST=matomo.example.com
@@ -38,4 +38,4 @@ services:
3838
- ./db.env
3939
restart: unless-stopped
4040
volumes:
41-
- /mnt/docker-volumes/matomo/database:/var/lib/mysql
41+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/matomo/database:/var/lib/mysql

examples/mirotalk/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ services:
1313
- 3000:3000 # WEB UI;
1414
volumes:
1515
- .env:/src/.env:ro
16-
- /mnt/docker-volumes/mirotalk/app:/src/app:ro
17-
- /mnt/docker-volumes/mirotalk/public:/src/public:ro
16+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/app:/src/app:ro
17+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/mirotalk/public:/src/public:ro
1818
#labels:
1919
#- traefik.enable=true
2020
#- traefik.http.routers.mirotalk.rule=Host(`meet.example.com`) # pls adjust

examples/money-balancer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ services:
77
ports:
88
- 8000:8000
99
volumes:
10-
- /mnt/docker-volumes/money-balancer/data:/data
10+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/money-balancer/data:/data
1111
environment:
1212
- JWT_SECRET=ThisIsAVerySecretString # change this

0 commit comments

Comments
 (0)