Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

49 lignes
2.4 KiB

  1. ---
  2. # Project source code URL: https://github.com/binwiederhier/ntfy
  3. matrix_ntfy_enabled: true
  4. matrix_ntfy_base_path: "{{ matrix_base_data_path }}/ntfy"
  5. matrix_ntfy_config_dir_path: "{{ matrix_ntfy_base_path }}/config"
  6. matrix_ntfy_data_path: "{{ matrix_ntfy_base_path }}/data"
  7. matrix_ntfy_version: v1.27.2
  8. matrix_ntfy_docker_image: "{{ matrix_container_global_registry_prefix }}binwiederhier/ntfy:{{ matrix_ntfy_version }}"
  9. matrix_ntfy_docker_image_force_pull: "{{ matrix_ntfy_docker_image.endswith(':latest') }}"
  10. # Public facing base URL of the ntfy service
  11. matrix_ntfy_base_url: "https://{{ matrix_server_fqn_ntfy }}"
  12. # Controls whether the container exposes its HTTP port (tcp/80 in the container).
  13. #
  14. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:2586"), or empty string to not expose.
  15. matrix_ntfy_container_http_host_bind_port: ''
  16. # A list of extra arguments to pass to the container (`docker run` command)
  17. matrix_ntfy_container_extra_arguments: []
  18. # Controls whether the self-check feature should validate SSL certificates.
  19. matrix_ntfy_self_check_validate_certificates: true
  20. # Default ntfy configuration template which covers the generic use case.
  21. # You can customize it by controlling the various variables inside it.
  22. #
  23. # For a more advanced customization, you can extend the default (see `matrix_ntfy_configuration_extension_yaml`)
  24. # or completely replace this variable with your own template.
  25. matrix_ntfy_configuration_yaml: "{{ lookup('template', 'templates/ntfy/server.yml.j2') }}"
  26. matrix_ntfy_configuration_extension_yaml: |
  27. # Your custom YAML configuration for ntfy goes here.
  28. # This configuration extends the default starting configuration (`matrix_ntfy_configuration_yaml`).
  29. #
  30. # You can override individual variables from the default configuration, or introduce new ones.
  31. #
  32. # If you need something more special, you can take full control by
  33. # completely redefining `matrix_ntfy_configuration_yaml`.
  34. matrix_ntfy_configuration_extension: "{{ matrix_ntfy_configuration_extension_yaml | from_yaml if matrix_ntfy_configuration_extension_yaml | from_yaml is mapping else {} }}"
  35. # Holds the final ntfy configuration (a combination of the default and its extension).
  36. # You most likely don't need to touch this variable. Instead, see `matrix_ntfy_configuration_yaml`.
  37. matrix_ntfy_configuration: "{{ matrix_ntfy_configuration_yaml | from_yaml | combine(matrix_ntfy_configuration_extension, recursive=True) }}"