Add config option to be able to access database outside of container

This commit is contained in:
Aaron Raimist
2019-06-09 20:35:35 -05:00
parent 67a54f4ab5
commit 6fce809d10
2 changed files with 11 additions and 0 deletions

View File

@ -15,3 +15,11 @@ matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v11 }}"
# A list of extra arguments to pass to the container
matrix_postgres_container_extra_arguments: []
# 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: ""