Use Postgres 10.x by default (only for new installs)
This playbook just tries to avoid trying to setup a Postgres 10 database with existing 9.x files, as that makes Postgres complain. Due to this, existing installs (still on 9.x) are detected and left on Postgres 9.x. They need to be upgraded to Postgres 10.x manually.
This commit is contained in:
@ -40,7 +40,11 @@ matrix_coturn_base_path: "{{ matrix_base_data_path }}/coturn"
|
||||
matrix_coturn_config_path: "{{ matrix_coturn_base_path }}/turnserver.conf"
|
||||
matrix_scratchpad_dir: "{{ matrix_base_data_path }}/scratchpad"
|
||||
|
||||
docker_postgres_image: "postgres:9.6.8-alpine"
|
||||
|
||||
docker_postgres_image_v9: "postgres:9.6.8-alpine"
|
||||
docker_postgres_image_v10: "postgres:10.4-alpine"
|
||||
docker_postgres_image_latest: "{{ docker_postgres_image_v10 }}"
|
||||
|
||||
docker_matrix_image: "matrixdotorg/synapse:v0.30.0"
|
||||
docker_nginx_image: "nginx:1.13.12-alpine"
|
||||
docker_riot_image: "avhost/docker-matrix-riot:v0.15.4"
|
||||
@ -48,6 +52,7 @@ docker_s3fs_image: "xueshanf/s3fs:latest"
|
||||
docker_goofys_image: "cloudproto/goofys:latest"
|
||||
docker_coturn_image: "instrumentisto/coturn:4.5.0.7"
|
||||
|
||||
|
||||
# To avoid Synapse's macaroon secret key from changing every time
|
||||
# a new config is built from scratch, you can specify one here.
|
||||
matrix_synapse_macaroon_secret_key: null
|
||||
|
Reference in New Issue
Block a user