Synapse PG DB fixes.
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Check and Create PR (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / Docker Compose Test (push) Has been cancelled
Gitea Branch PR, SonarQube Analyze, and Merge Workflow / PR Merge (push) Has been cancelled

This commit is contained in:
2024-12-29 11:54:04 -05:00
parent ae108d6e2b
commit 7c4f087de1
+5 -2
View File
@@ -4579,11 +4579,14 @@ services:
volumes:
- ${DOCKER_VOLUME_CONFIG}/synapse/:/data
synapse-db:
image: docker.io/postgres:16-alpine
image: postgres:16-alpine
environment:
POSTGRES_USER: synapse
POSTGRES_PASSWORD: ${SYNAPSE_POSTGRES_PASSWORD}
POSTGRES_INITDB_ARGS: '--encoding: UTF-8 --lc-collate: C --lc-ctype: C'
POSTGRES_DB: synapse
expose:
- 5432
restart: unless-stopped
volumes:
- synapse-db:/var/lib/postgresql/data
tandoor: