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

168 строки
5.1 KiB

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