Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

31 linhas
1.3 KiB

  1. matrix_postgres_enabled: true
  2. matrix_postgres_connection_hostname: ""
  3. matrix_postgres_connection_username: ""
  4. matrix_postgres_connection_password: ""
  5. matrix_postgres_db_name: ""
  6. matrix_postgres_base_path: "{{ matrix_base_data_path }}/postgres"
  7. matrix_postgres_data_path: "{{ matrix_postgres_base_path }}/data"
  8. matrix_postgres_docker_image_v9: "postgres:9.6.14-alpine"
  9. matrix_postgres_docker_image_v10: "postgres:10.9-alpine"
  10. matrix_postgres_docker_image_v11: "postgres:11.4-alpine"
  11. matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v11 }}"
  12. # This variable is assigned at runtime. Overriding its value has no effect.
  13. matrix_postgres_docker_image_to_use: '{{ matrix_postgres_docker_image_latest }}'
  14. matrix_postgres_docker_image_force_pull: "{{ matrix_postgres_docker_image_to_use.endswith(':latest') }}"
  15. # A list of extra arguments to pass to the container
  16. matrix_postgres_container_extra_arguments: []
  17. # Controls whether the matrix-postgres container exposes a port (tcp/5432 in the
  18. # container) that can be used to access the database from outside the container (e.g. with psql)
  19. #
  20. # psql postgresql://username:password@localhost:<port>/database_name
  21. #
  22. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:5432"), or empty string to not expose.
  23. matrix_postgres_container_postgres_bind_port: ""