Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

23 řádky
924 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_docker_image_v5: "redis:5.0-alpine"
  6. matrix_redis_docker_image_v6: "redis:6.0-alpine"
  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: ""