2019-01-16 16:05:48 +00:00
|
|
|
matrix_postgres_enabled: true
|
|
|
|
|
|
|
|
matrix_postgres_connection_hostname: ""
|
|
|
|
matrix_postgres_connection_username: ""
|
|
|
|
matrix_postgres_connection_password: ""
|
|
|
|
matrix_postgres_db_name: ""
|
2019-01-12 15:53:00 +00:00
|
|
|
|
|
|
|
matrix_postgres_base_path: "{{ matrix_base_data_path }}/postgres"
|
|
|
|
matrix_postgres_data_path: "{{ matrix_postgres_base_path }}/data"
|
|
|
|
|
2019-05-10 13:02:32 +00:00
|
|
|
matrix_postgres_docker_image_v9: "postgres:9.6.13-alpine"
|
|
|
|
matrix_postgres_docker_image_v10: "postgres:10.8-alpine"
|
|
|
|
matrix_postgres_docker_image_v11: "postgres:11.3-alpine"
|
2019-03-03 10:27:43 +00:00
|
|
|
matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v11 }}"
|
2019-04-30 14:35:18 +00:00
|
|
|
|
|
|
|
# A list of extra arguments to pass to the container
|
|
|
|
matrix_postgres_container_extra_arguments: []
|
2019-06-10 01:35:35 +00:00
|
|
|
|
|
|
|
# Controls whether the matrix-postgres container exposes a port (tcp/5432 in the
|
|
|
|
# container) that can be used to access the database with psql.
|
|
|
|
#
|
|
|
|
# psql postgresql://username:password@localhost:<port>/database_name
|
|
|
|
#
|
|
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:5432"), or empty string to not expose.
|
|
|
|
matrix_postgres_container_postgres_bind_port: ""
|