summary refs log tree commit diff
path: root/contrib/docker
diff options
context:
space:
mode:
authorkaiyou <pierre@jaury.eu>2018-05-01 20:47:58 +0200
committerkaiyou <pierre@jaury.eu>2018-05-01 20:47:58 +0200
commitd4c14e143825c679a7909b009aec2e51f829857f (patch)
treef30902317cd437c74f79692bdccc0d278c05182d /contrib/docker
parentMerge remote-tracking branch 'upstream/master' into feat-dockerfile (diff)
downloadsynapse-d4c14e143825c679a7909b009aec2e51f829857f.tar.xz
Fix the documentation about 'POSTGRES_DB'
Diffstat (limited to 'contrib/docker')
-rw-r--r--contrib/docker/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/docker/README.md b/contrib/docker/README.md
index 25c358c847..aed56646c2 100644
--- a/contrib/docker/README.md
+++ b/contrib/docker/README.md
@@ -135,7 +135,7 @@ Shared secrets, that will be initialized to random values if not set:
 
 Database specific values (will use SQLite if not set):
 
-* `POSTGRES_DATABASE` - The database name for the synapse postgres database. [default: `matrix`]
+* `POSTGRES_DB` - The database name for the synapse postgres database. [default: `synapse`]
 * `POSTGRES_HOST` - The host of the postgres database if you wish to use postgresql instead of sqlite3. [default: `db` which is useful when using a container on the same docker network in a compose file where the postgres service is called `db`]
 * `POSTGRES_PASSWORD` - The password for the synapse postgres database. **If this is set then postgres will be used instead of sqlite3.** [default: none] **NOTE**: You are highly encouraged to use postgresql! Please use the compose file to make it easier to deploy.
 * `POSTGRES_USER` - The user for the synapse postgres database. [default: `matrix`]