Update docker-compose.yml

This commit is contained in:
AliEbrahimpour
2023-08-06 11:16:18 +03:30
committed by GitHub
parent 18776e6baa
commit be590bb349

View File

@@ -655,6 +655,22 @@ services:
- POSTGRES_CONFLUENCE_PASSWORD=${CONFLUENCE_POSTGRES_PASSWORD}
networks:
- backend
### pgbackups PostgreSQL ###########################################
pgbackups:
image: prodrigestivill/postgres-backup-local
restart: always
volumes:
- ../backup:/backups
links:
- postgres
environment:
- POSTGRES_HOST=malekfar-postgres-1
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
networks:
- backend
### PostgreSQL PostGis ###################################
postgres-postgis: