separate postgres db into separate override compose file

This commit is contained in:
James 2022-09-27 19:50:49 +01:00
parent 2df8d080b3
commit 7343f6ca7d
3 changed files with 26 additions and 19 deletions

View File

@ -11,3 +11,4 @@ NEXTCLOUD_MEM_LIMIT=4g
# postgres
POSTGRES_TAG=14
POSTGRES_HOST=db

24
docker-compose.db.yaml Normal file
View 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

View File

@ -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