diff options
author | Fridtjof Mund <2780577+fridtjof@users.noreply.github.com> | 2020-02-25 11:48:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 10:48:13 +0000 |
commit | 4aea0bd292bf9e33d166fcfd632159cfe35050dd (patch) | |
tree | 06e3be4fa656039f8d8fdd4557f39c7c4efc4922 /contrib/docker | |
parent | Remove redundant store_room call (#6979) (diff) | |
download | synapse-4aea0bd292bf9e33d166fcfd632159cfe35050dd.tar.xz |
contrib/docker: remove quotes for POSTGRES_INITDB_ARGS (#6984)
I made a mistake in https://github.com/matrix-org/synapse/pull/6921 - the quotes break the postgres container's startup script (or docker-compose), which makes initdb fail: https://github.com/matrix-org/synapse/pull/6921#issuecomment-590657154 Signed-off-by: Fridtjof Mund <fridtjof@das-labor.org>
Diffstat (limited to 'contrib/docker')
-rw-r--r-- | contrib/docker/docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/docker/docker-compose.yml b/contrib/docker/docker-compose.yml index 5df29379c8..453b305053 100644 --- a/contrib/docker/docker-compose.yml +++ b/contrib/docker/docker-compose.yml @@ -58,7 +58,7 @@ services: - POSTGRES_PASSWORD=changeme # ensure the database gets created correctly # https://github.com/matrix-org/synapse/blob/master/docs/postgres.md#set-up-database - - POSTGRES_INITDB_ARGS="--encoding=UTF-8 --lc-collate=C --lc-ctype=C" + - POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C volumes: # You may store the database tables in a local folder.. - ./schemas:/var/lib/postgresql/data |