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

150 строки
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. - custom/matrix-mailer
  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-signalgo
  55. - custom/matrix-bridge-mautrix-gmessages
  56. - custom/matrix-bridge-mautrix-whatsapp
  57. - custom/matrix-bridge-mautrix-wsproxy
  58. - custom/matrix-bridge-mautrix-discord
  59. - custom/matrix-bridge-mautrix-slack
  60. - custom/matrix-bridge-mx-puppet-discord
  61. - custom/matrix-bridge-mx-puppet-groupme
  62. - custom/matrix-bridge-mx-puppet-steam
  63. - custom/matrix-bridge-mx-puppet-slack
  64. - custom/matrix-bridge-mx-puppet-twitter
  65. - custom/matrix-bridge-mx-puppet-instagram
  66. - custom/matrix-bridge-sms
  67. - custom/matrix-bridge-heisenbridge
  68. - custom/matrix-bridge-hookshot
  69. - custom/matrix-bot-matrix-reminder-bot
  70. - custom/matrix-bot-matrix-registration-bot
  71. - custom/matrix-bot-maubot
  72. - custom/matrix-bot-buscarron
  73. - custom/matrix-bot-honoroit
  74. - custom/matrix-bot-postmoogle
  75. - custom/matrix-bot-go-neb
  76. - custom/matrix-bot-mjolnir
  77. - custom/matrix-bot-draupnir
  78. - custom/matrix-bot-chatgpt
  79. - custom/matrix-cactus-comments
  80. - custom/matrix-rageshake
  81. - custom/matrix-synapse
  82. - custom/matrix-synapse-auto-compressor
  83. - custom/matrix-synapse-reverse-proxy-companion
  84. - custom/matrix-dendrite
  85. - custom/matrix-conduit
  86. - custom/matrix-synapse-admin
  87. - galaxy/prometheus_node_exporter
  88. - galaxy/prometheus_postgres_exporter
  89. - custom/matrix-prometheus-nginxlog-exporter
  90. - galaxy/prometheus
  91. - galaxy/grafana
  92. - custom/matrix-prometheus-services-connect
  93. - custom/matrix-prometheus-services-proxy-connect
  94. - custom/matrix-registration
  95. - custom/matrix-client-element
  96. - custom/matrix-client-hydrogen
  97. - custom/matrix-client-cinny
  98. - custom/matrix-client-schildichat
  99. - galaxy/jitsi
  100. - custom/matrix-user-verification-service
  101. - custom/matrix-ldap-registration-proxy
  102. - custom/matrix-ma1sd
  103. - custom/matrix-dimension
  104. - galaxy/etherpad
  105. - custom/etherpad-proxy-connect
  106. - custom/matrix-sliding-sync
  107. - custom/matrix-email2matrix
  108. - custom/matrix-sygnal
  109. - galaxy/ntfy
  110. - custom/matrix-nginx-proxy
  111. - custom/matrix-coturn
  112. - custom/matrix-media-repo
  113. - role: galaxy/auxiliary
  114. - role: galaxy/postgres_backup
  115. - role: galaxy/backup_borg
  116. - custom/matrix-user-creator
  117. - custom/matrix-common-after
  118. - role: galaxy/container_socket_proxy
  119. - role: galaxy/traefik
  120. - role: galaxy/traefik_certs_dumper
  121. - when: devture_systemd_service_manager_enabled | bool
  122. role: galaxy/systemd_service_manager
  123. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  124. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  125. - when: devture_playbook_state_preserver_enabled | bool
  126. role: galaxy/playbook_state_preserver
  127. tags:
  128. - setup-all
  129. - install-all
  130. - role: galaxy/playbook_runtime_messages