Matrix Docker Ansible eploy
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

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