mirror of
https://github.com/Thumbscrew/nextcloud-docker-compose.git
synced 2025-04-04 14:23:43 +00:00
separate postgres db into separate override compose file
This commit is contained in:
parent
2df8d080b3
commit
7343f6ca7d
@ -11,3 +11,4 @@ NEXTCLOUD_MEM_LIMIT=4g
|
||||
|
||||
# postgres
|
||||
POSTGRES_TAG=14
|
||||
POSTGRES_HOST=db
|
24
docker-compose.db.yaml
Normal file
24
docker-compose.db.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
services:
|
||||
db:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${VOLUME_PATH}/var/lib/postgresql/data:/var/lib/postgresql/data:rw
|
||||
secrets:
|
||||
- postgres_db
|
||||
- postgres_user
|
||||
- postgres_password
|
||||
networks:
|
||||
- backend
|
||||
environment:
|
||||
POSTGRES_DB_FILE: /run/secrets/postgres_db
|
||||
POSTGRES_USER_FILE: /run/secrets/postgres_user
|
||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
||||
nextcloud:
|
||||
environment:
|
||||
POSTGRES_HOST: db
|
||||
depends_on:
|
||||
- db
|
||||
cron:
|
||||
depends_on:
|
||||
- db
|
@ -17,22 +17,6 @@ networks:
|
||||
backend:
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:${POSTGRES_TAG}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${VOLUME_PATH}/var/lib/postgresql/data:/var/lib/postgresql/data:rw
|
||||
secrets:
|
||||
- postgres_db
|
||||
- postgres_user
|
||||
- postgres_password
|
||||
networks:
|
||||
- backend
|
||||
environment:
|
||||
POSTGRES_DB_FILE: /run/secrets/postgres_db
|
||||
POSTGRES_USER_FILE: /run/secrets/postgres_user
|
||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
||||
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: unless-stopped
|
||||
@ -62,14 +46,13 @@ services:
|
||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
||||
POSTGRES_DB_FILE: /run/secrets/postgres_db
|
||||
POSTGRES_USER_FILE: /run/secrets/postgres_user
|
||||
POSTGRES_HOST: db
|
||||
POSTGRES_HOST: ${POSTGRES_HOST}
|
||||
NEXTCLOUD_ADMIN_PASSWORD_FILE: /run/secrets/nextcloud_admin_password
|
||||
NEXTCLOUD_ADMIN_USER_FILE: /run/secrets/nextcloud_admin_user
|
||||
REDIS_HOST: redis
|
||||
NEXTCLOUD_TRUSTED_DOMAINS: ${NEXTCLOUD_DOMAIN}
|
||||
OVERWRITEPROTOCOL: https
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
||||
cron:
|
||||
@ -81,5 +64,4 @@ services:
|
||||
- backend
|
||||
entrypoint: /cron.sh
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
|
Loading…
Reference in New Issue
Block a user