Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

15 righe
787 B

  1. # The defaults below cause a postgres server to be configured (running within a container).
  2. # Using an external server is possible by tweaking all of the parameters below.
  3. matrix_postgres_use_external: false
  4. matrix_postgres_connection_hostname: "matrix-postgres"
  5. matrix_postgres_connection_username: "synapse"
  6. matrix_postgres_connection_password: "synapse-password"
  7. matrix_postgres_db_name: "homeserver"
  8. matrix_postgres_base_path: "{{ matrix_base_data_path }}/postgres"
  9. matrix_postgres_data_path: "{{ matrix_postgres_base_path }}/data"
  10. matrix_postgres_docker_image_v9: "postgres:9.6.11-alpine"
  11. matrix_postgres_docker_image_v10: "postgres:10.6-alpine"
  12. matrix_postgres_docker_image_v11: "postgres:11.1-alpine"
  13. matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v11 }}"