Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

165 строки
5.1 KiB

  1. ---
  2. - name: "Set up a Matrix server"
  3. hosts: "{{ target if target is defined else 'matrix_servers' }}"
  4. become: true
  5. roles:
  6. # Most of the roles below are not distributed with the playbook, but downloaded separately using `ansible-galaxy` via the `just roles` command (see `justfile`).
  7. - role: galaxy/playbook_help
  8. tags:
  9. - setup-all
  10. - install-all
  11. - role: galaxy/systemd_docker_base
  12. - role: custom/matrix_playbook_migration
  13. - when: matrix_playbook_docker_installation_enabled | bool
  14. role: galaxy/docker
  15. vars:
  16. docker_install_compose: false
  17. docker_install_compose_plugin: false
  18. tags:
  19. - setup-docker
  20. - setup-all
  21. - install-docker
  22. - install-all
  23. - when: devture_docker_sdk_for_python_installation_enabled | bool
  24. role: galaxy/docker_sdk_for_python
  25. tags:
  26. - setup-docker
  27. - setup-all
  28. - install-docker
  29. - install-all
  30. - when: devture_timesync_installation_enabled | bool
  31. role: galaxy/timesync
  32. tags:
  33. - setup-timesync
  34. - setup-all
  35. - install-timesync
  36. - install-all
  37. - custom/matrix-base
  38. - custom/matrix-dynamic-dns
  39. - galaxy/exim_relay
  40. - role: galaxy/postgres
  41. - galaxy/valkey
  42. - role: custom/matrix-authentication-service
  43. - custom/matrix-corporal
  44. - custom/matrix-appservice-draupnir-for-all
  45. - custom/matrix-appservice-double-puppet
  46. - custom/matrix-alertmanager-receiver
  47. - custom/matrix-bridge-appservice-discord
  48. - custom/matrix-bridge-appservice-slack
  49. - custom/matrix-bridge-appservice-webhooks
  50. - custom/matrix-bridge-appservice-irc
  51. - custom/matrix-bridge-appservice-kakaotalk
  52. - custom/matrix-bridge-beeper-linkedin
  53. - custom/matrix-bridge-wechat
  54. - custom/matrix-bridge-mautrix-facebook
  55. - custom/matrix-bridge-mautrix-twitter
  56. - custom/matrix-bridge-mautrix-googlechat
  57. - custom/matrix-bridge-mautrix-instagram
  58. - custom/matrix-bridge-mautrix-meta-messenger
  59. - custom/matrix-bridge-mautrix-meta-instagram
  60. - custom/matrix-bridge-mautrix-telegram
  61. - custom/matrix-bridge-mautrix-signal
  62. - custom/matrix-bridge-mautrix-gmessages
  63. - custom/matrix-bridge-mautrix-whatsapp
  64. - custom/matrix-bridge-mautrix-wsproxy
  65. - custom/matrix-bridge-mautrix-discord
  66. - custom/matrix-bridge-mautrix-slack
  67. - custom/matrix-bridge-mautrix-bluesky
  68. - custom/matrix-bridge-mx-puppet-groupme
  69. - custom/matrix-bridge-mx-puppet-steam
  70. - custom/matrix-bridge-postmoogle
  71. - custom/matrix-bridge-sms
  72. - custom/matrix-bridge-steam
  73. - custom/matrix-bridge-heisenbridge
  74. - custom/matrix-bridge-hookshot
  75. - custom/matrix-bridge-zulip
  76. - custom/matrix-bot-matrix-reminder-bot
  77. - custom/matrix-bot-matrix-registration-bot
  78. - custom/matrix-bot-maubot
  79. - custom/matrix-bot-buscarron
  80. - custom/matrix-bot-baibot
  81. - custom/matrix-bot-honoroit
  82. - custom/matrix-bot-go-neb
  83. - custom/matrix-bot-mjolnir
  84. - custom/matrix-bot-draupnir
  85. - custom/matrix-cactus-comments
  86. - custom/matrix-cactus-comments-client
  87. - custom/matrix-rageshake
  88. - custom/matrix-synapse
  89. - custom/matrix-synapse-auto-compressor
  90. - custom/matrix-synapse-reverse-proxy-companion
  91. - custom/matrix-dendrite
  92. - custom/matrix-conduit
  93. - custom/matrix-conduwuit
  94. - custom/matrix-continuwuity
  95. - custom/matrix-synapse-admin
  96. - custom/matrix-synapse-usage-exporter
  97. - galaxy/prometheus_node_exporter
  98. - galaxy/prometheus_postgres_exporter
  99. - custom/matrix-prometheus-nginxlog-exporter
  100. - galaxy/prometheus
  101. - galaxy/grafana
  102. - custom/matrix-prometheus-services-connect
  103. - custom/matrix-registration
  104. - custom/matrix-client-element
  105. - custom/matrix-client-hydrogen
  106. - custom/matrix-client-cinny
  107. - custom/matrix-client-schildichat
  108. - custom/matrix-client-fluffychat
  109. - galaxy/jitsi
  110. - custom/matrix-user-verification-service
  111. - custom/matrix-ldap-registration-proxy
  112. - custom/matrix-ma1sd
  113. - custom/matrix-dimension
  114. - galaxy/etherpad
  115. - custom/matrix-sliding-sync
  116. - custom/matrix-sygnal
  117. - galaxy/ntfy
  118. - custom/matrix-static-files
  119. - custom/matrix-coturn
  120. - custom/matrix-media-repo
  121. - custom/matrix-pantalaimon
  122. - custom/matrix-element-admin
  123. - custom/matrix-element-call
  124. - galaxy/livekit_server
  125. - custom/matrix-livekit-jwt-service
  126. - role: galaxy/postgres_backup
  127. - role: galaxy/backup_borg
  128. - custom/matrix-user-creator
  129. - custom/matrix-common-after
  130. - role: galaxy/container_socket_proxy
  131. - role: galaxy/traefik
  132. - role: galaxy/traefik_certs_dumper
  133. - role: galaxy/auxiliary
  134. - when: devture_systemd_service_manager_enabled | bool
  135. role: galaxy/systemd_service_manager
  136. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  137. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  138. - when: devture_playbook_state_preserver_enabled | bool
  139. role: galaxy/playbook_state_preserver
  140. tags:
  141. - setup-all
  142. - install-all
  143. - role: galaxy/playbook_runtime_messages