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.
 
 

23 wiersze
972 B

  1. matrix_redis_enabled: true
  2. matrix_redis_connection_password: ""
  3. matrix_redis_base_path: "{{ matrix_base_data_path }}/redis"
  4. matrix_redis_data_path: "{{ matrix_redis_base_path }}/data"
  5. matrix_redis_version: 6.0.10-alpine
  6. matrix_redis_docker_image_v6: "{{ matrix_container_global_registry_prefix }}redis:{{ matrix_redis_version }}"
  7. matrix_redis_docker_image_latest: "{{ matrix_redis_docker_image_v6 }}"
  8. matrix_redis_docker_image_to_use: '{{ matrix_redis_docker_image_latest }}'
  9. matrix_redis_docker_image_force_pull: "{{ matrix_redis_docker_image_to_use.endswith(':latest') }}"
  10. # A list of extra arguments to pass to the container
  11. matrix_redis_container_extra_arguments: []
  12. # Controls whether the matrix-redis container exposes a port (tcp/6379 in the container)
  13. # that can be used to access redis from outside the container
  14. #
  15. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:6379"), or empty string to not expose.
  16. matrix_redis_container_redis_bind_port: ""