Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

15 lignes
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 }}"