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.
 
 

53 rader
2.6 KiB

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # Cactus Comments is a federated comment system built on Matrix.
  6. # This role installs the backend appservice.
  7. # Project source code URL: https://gitlab.com/cactus-comments/cactus-appservice
  8. matrix_cactus_comments_enabled: true
  9. matrix_cactus_comments_container_image_self_build: false
  10. matrix_cactus_comments_docker_repo: "https://gitlab.com/cactus-comments/cactus-appservice.git"
  11. matrix_cactus_comments_docker_repo_version: "{{ matrix_cactus_comments_version if matrix_cactus_comments_version != 'latest' else 'main' }}"
  12. matrix_cactus_comments_docker_src_files_path: "{{ matrix_cactus_comments_base_path }}/docker-src"
  13. matrix_cactus_comments_base_path: "{{ matrix_base_data_path }}/cactus-comments"
  14. matrix_cactus_comments_container_tmp_path: "{{ matrix_cactus_comments_base_path }}/tmp"
  15. matrix_cactus_comments_app_service_config_file: "{{ matrix_cactus_comments_base_path }}/cactus_appservice.yaml"
  16. matrix_cactus_comments_app_service_env_file: "{{ matrix_cactus_comments_base_path }}/cactus.env"
  17. matrix_cactus_comments_as_token: ''
  18. matrix_cactus_comments_hs_token: ''
  19. matrix_cactus_comments_homeserver_url: ''
  20. matrix_cactus_comments_user_id: "bot.cactusbot"
  21. matrix_cactus_comments_tmp_directory_size_mb: 1
  22. matrix_cactus_comments_container_port: 5000
  23. # renovate: datasource=docker depName=cactuscomments/cactus-appservice
  24. matrix_cactus_comments_version: 0.9.0
  25. matrix_cactus_comments_docker_image: "{{ matrix_container_global_registry_prefix }}cactuscomments/cactus-appservice:{{ matrix_cactus_comments_version }}"
  26. matrix_cactus_comments_docker_image_force_pull: "{{ matrix_cactus_comments_docker_image.endswith(':latest') }}"
  27. matrix_cactus_comments_container_network: ""
  28. matrix_cactus_comments_container_additional_networks: "{{ matrix_cactus_comments_container_additional_networks_auto + matrix_cactus_comments_container_additional_networks_custom }}"
  29. matrix_cactus_comments_container_additional_networks_auto: []
  30. matrix_cactus_comments_container_additional_networks_custom: []
  31. # A list of extra arguments to pass to the container
  32. matrix_cactus_comments_container_extra_arguments: []
  33. # List of systemd services that matrix-cactus-comments.service depends on
  34. matrix_cactus_comments_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  35. # List of systemd services that matrix-cactus-comments.service wants
  36. matrix_cactus_comments_systemd_wanted_services_list: []
  37. matrix_cactus_comments_environment_variables_extension: ''