Skip to content
Snippets Groups Projects
Commit 886c2d50 authored by kaiyou's avatar kaiyou
Browse files

Support an external postgresql config in the Docker image

parent f2bf0cda
No related branches found
No related tags found
No related merge requests found
......@@ -46,8 +46,17 @@ listeners:
## Database ##
{% if SYNAPSE_DB_HOST %}
{% if SYNAPSE_DB_PASSWORD %}
database:
name: "psycopg2"
args:
user: "{{ SYNAPSE_DB_USER or "matrix" }}"
password: "{{ SYNAPSE_DB_PASSWORD }}"
database: "{{ SYNAPSE_DB_DATABASE or "matrix" }}"
host: "{{ SYNAPSE_DB_HOST or "db" }}"
port: "{{ SYNAPSE_DB_PORT or "5432" }}"
cp_min: 5
cp_max: 10
{% else %}
database:
name: "sqlite3"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment