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

149 строки
4.7 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. - role: galaxy/systemd_docker_base
  9. - role: custom/matrix_playbook_migration
  10. - when: matrix_playbook_docker_installation_enabled | bool
  11. role: galaxy/docker
  12. vars:
  13. docker_install_compose: false
  14. docker_install_compose_plugin: false
  15. tags:
  16. - setup-docker
  17. - setup-all
  18. - install-docker
  19. - install-all
  20. - when: devture_docker_sdk_for_python_installation_enabled | bool
  21. role: galaxy/docker_sdk_for_python
  22. tags:
  23. - setup-docker
  24. - setup-all
  25. - install-docker
  26. - install-all
  27. - when: devture_timesync_installation_enabled | bool
  28. role: galaxy/timesync
  29. tags:
  30. - setup-timesync
  31. - setup-all
  32. - install-timesync
  33. - install-all
  34. - custom/matrix-base
  35. - custom/matrix-dynamic-dns
  36. - galaxy/exim_relay
  37. - role: galaxy/postgres
  38. - galaxy/redis
  39. - custom/matrix-corporal
  40. - custom/matrix-bridge-appservice-discord
  41. - custom/matrix-bridge-appservice-slack
  42. - custom/matrix-bridge-appservice-webhooks
  43. - custom/matrix-bridge-appservice-irc
  44. - custom/matrix-bridge-appservice-kakaotalk
  45. - custom/matrix-bridge-beeper-linkedin
  46. - custom/matrix-bridge-go-skype-bridge
  47. - custom/matrix-bridge-mautrix-facebook
  48. - custom/matrix-bridge-mautrix-twitter
  49. - custom/matrix-bridge-mautrix-hangouts
  50. - custom/matrix-bridge-mautrix-googlechat
  51. - custom/matrix-bridge-mautrix-instagram
  52. - custom/matrix-bridge-mautrix-telegram
  53. - custom/matrix-bridge-mautrix-signal
  54. - custom/matrix-bridge-mautrix-gmessages
  55. - custom/matrix-bridge-mautrix-whatsapp
  56. - custom/matrix-bridge-mautrix-wsproxy
  57. - custom/matrix-bridge-mautrix-discord
  58. - custom/matrix-bridge-mautrix-slack
  59. - custom/matrix-bridge-mx-puppet-discord
  60. - custom/matrix-bridge-mx-puppet-groupme
  61. - custom/matrix-bridge-mx-puppet-steam
  62. - custom/matrix-bridge-mx-puppet-slack
  63. - custom/matrix-bridge-mx-puppet-twitter
  64. - custom/matrix-bridge-mx-puppet-instagram
  65. - custom/matrix-bridge-sms
  66. - custom/matrix-bridge-heisenbridge
  67. - custom/matrix-bridge-hookshot
  68. - custom/matrix-bot-matrix-reminder-bot
  69. - custom/matrix-bot-matrix-registration-bot
  70. - custom/matrix-bot-maubot
  71. - custom/matrix-bot-buscarron
  72. - custom/matrix-bot-honoroit
  73. - custom/matrix-bot-postmoogle
  74. - custom/matrix-bot-go-neb
  75. - custom/matrix-bot-mjolnir
  76. - custom/matrix-bot-draupnir
  77. - custom/matrix-bot-chatgpt
  78. - custom/matrix-cactus-comments
  79. - custom/matrix-rageshake
  80. - custom/matrix-synapse
  81. - custom/matrix-synapse-auto-compressor
  82. - custom/matrix-synapse-reverse-proxy-companion
  83. - custom/matrix-dendrite
  84. - custom/matrix-conduit
  85. - custom/matrix-synapse-admin
  86. - galaxy/prometheus_node_exporter
  87. - galaxy/prometheus_postgres_exporter
  88. - custom/matrix-prometheus-nginxlog-exporter
  89. - galaxy/prometheus
  90. - galaxy/grafana
  91. - custom/matrix-prometheus-services-connect
  92. - custom/matrix-prometheus-services-proxy-connect
  93. - custom/matrix-registration
  94. - custom/matrix-client-element
  95. - custom/matrix-client-hydrogen
  96. - custom/matrix-client-cinny
  97. - custom/matrix-client-schildichat
  98. - galaxy/jitsi
  99. - custom/matrix-user-verification-service
  100. - custom/matrix-ldap-registration-proxy
  101. - custom/matrix-ma1sd
  102. - custom/matrix-dimension
  103. - galaxy/etherpad
  104. - custom/etherpad-proxy-connect
  105. - custom/matrix-sliding-sync
  106. - custom/matrix-email2matrix
  107. - custom/matrix-sygnal
  108. - galaxy/ntfy
  109. - custom/matrix-nginx-proxy
  110. - custom/matrix-coturn
  111. - custom/matrix-media-repo
  112. - role: galaxy/auxiliary
  113. - role: galaxy/postgres_backup
  114. - role: galaxy/backup_borg
  115. - custom/matrix-user-creator
  116. - custom/matrix-common-after
  117. - role: galaxy/container_socket_proxy
  118. - role: galaxy/traefik
  119. - role: galaxy/traefik_certs_dumper
  120. - when: devture_systemd_service_manager_enabled | bool
  121. role: galaxy/systemd_service_manager
  122. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  123. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  124. - when: devture_playbook_state_preserver_enabled | bool
  125. role: galaxy/playbook_state_preserver
  126. tags:
  127. - setup-all
  128. - install-all
  129. - role: galaxy/playbook_runtime_messages