Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- matrix_postgres_enabled: true
-
- matrix_postgres_connection_hostname: ""
- matrix_postgres_connection_username: ""
- matrix_postgres_connection_password: ""
- matrix_postgres_db_name: ""
-
- matrix_postgres_base_path: "{{ matrix_base_data_path }}/postgres"
- matrix_postgres_data_path: "{{ matrix_postgres_base_path }}/data"
-
- matrix_postgres_docker_image_v9: "docker.io/postgres:9.6.20-alpine"
- matrix_postgres_docker_image_v10: "docker.io/postgres:10.15-alpine"
- matrix_postgres_docker_image_v11: "docker.io/postgres:11.10-alpine"
- matrix_postgres_docker_image_v12: "docker.io/postgres:12.5-alpine"
- matrix_postgres_docker_image_v13: "docker.io/postgres:13.1-alpine"
- matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v13 }}"
-
- # This variable is assigned at runtime. Overriding its value has no effect.
- matrix_postgres_docker_image_to_use: '{{ matrix_postgres_docker_image_latest }}'
-
- matrix_postgres_docker_image_force_pull: "{{ matrix_postgres_docker_image_to_use.endswith(':latest') }}"
-
- # 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 from outside the container (e.g. 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: ""
-
- matrix_postgres_tool_synapse_janitor: "https://raw.githubusercontent.com/xwiki-labs/synapse_scripts/a9188ff175ae581610f92d58ea6eac9a114d854b/synapse_janitor.sql"
|