Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

25 rader
976 B

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