fix: name forced volumes

This commit is contained in:
AngeD 2023-09-18 11:36:11 +02:00
parent 1feb3c285c
commit 0027e6d847
3 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,7 @@ services:
restart: unless-stopped restart: unless-stopped
user: "$PUID:$PGID" user: "$PUID:$PGID"
volumes: volumes:
- cache:/cache/
- config:/config/ - config:/config/
- $MEDIA_PATH:/media/ - $MEDIA_PATH:/media/
networks: networks:
@ -29,6 +30,7 @@ volumes:
external: true external: true
certbotroot: certbotroot:
external: true external: true
cache:
config: config:
networks: networks:

View File

@ -25,6 +25,8 @@ services:
redis: redis:
image: docker.io/redis:latest image: docker.io/redis:latest
restart: unless-stopped restart: unless-stopped
volumes:
- redis:/data/
nextcloud: nextcloud:
build: . build: .
@ -51,6 +53,7 @@ services:
volumes: volumes:
db: db:
redis:
nextcloud: nextcloud:
apps: apps:
config: config:

View File

@ -15,6 +15,8 @@ services:
redis: redis:
image: docker.io/redis:latest image: docker.io/redis:latest
restart: unless-stopped restart: unless-stopped
volumes:
redis:
searxng: searxng:
build: . build: .
@ -29,6 +31,7 @@ services:
- redis - redis
volumes: volumes:
redis:
config: config:
sites: sites:
external: true external: true