Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

51 строка
2.2 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: "docker.io/postgres:9.6.20-alpine"
  9. matrix_postgres_docker_image_v10: "docker.io/postgres:10.15-alpine"
  10. matrix_postgres_docker_image_v11: "docker.io/postgres:11.10-alpine"
  11. matrix_postgres_docker_image_v12: "docker.io/postgres:12.5-alpine"
  12. matrix_postgres_docker_image_v13: "docker.io/postgres:13.1-alpine"
  13. matrix_postgres_docker_image_latest: "{{ matrix_postgres_docker_image_v13 }}"
  14. # This variable is assigned at runtime. Overriding its value has no effect.
  15. matrix_postgres_docker_image_to_use: '{{ matrix_postgres_docker_image_latest }}'
  16. matrix_postgres_docker_image_force_pull: "{{ matrix_postgres_docker_image_to_use.endswith(':latest') }}"
  17. # A list of extra arguments to pass to the container
  18. matrix_postgres_container_extra_arguments: []
  19. # Controls whether the matrix-postgres container exposes a port (tcp/5432 in the
  20. # container) that can be used to access the database from outside the container (e.g. with psql)
  21. #
  22. # psql postgresql://username:password@localhost:<port>/database_name
  23. #
  24. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:5432"), or empty string to not expose.
  25. matrix_postgres_container_postgres_bind_port: ""
  26. # A list of additional (databases and their credentials) to create.
  27. #
  28. # Example:
  29. # matrix_postgres_additional_databases:
  30. # - name: matrix_appservice_discord
  31. # username: matrix_appservice_discord
  32. # password: some_password
  33. # - name: matrix_appservice_slack
  34. # username: matrix_appservice_slack
  35. # password: some_password
  36. matrix_postgres_additional_databases: []
  37. # The number of seconds to wait after starting `matrix-postgres.service`
  38. # and before trying to run queries for creating additional databases/users against it.
  39. #
  40. # For most (subsequent) runs, Postgres would already be running, so no waiting will be happening at all.
  41. matrix_postgres_additional_databases_postgres_start_wait_timeout_seconds: 15