Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

111 wiersze
3.9 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 `make roles` command (see `Makefile`).
  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. - when: devture_docker_sdk_for_python_installation_enabled | bool
  18. role: galaxy/com.devture.ansible.role.docker_sdk_for_python
  19. tags:
  20. - setup-docker
  21. - setup-all
  22. - when: devture_timesync_installation_enabled | bool
  23. role: galaxy/com.devture.ansible.role.timesync
  24. tags:
  25. - setup-timesync
  26. - setup-all
  27. - custom/matrix-base
  28. - custom/matrix-dynamic-dns
  29. - custom/matrix-mailer
  30. - custom/matrix-postgres
  31. - custom/matrix-redis
  32. - custom/matrix-corporal
  33. - custom/matrix-bridge-appservice-discord
  34. - custom/matrix-bridge-appservice-slack
  35. - custom/matrix-bridge-appservice-webhooks
  36. - custom/matrix-bridge-appservice-irc
  37. - custom/matrix-bridge-appservice-kakaotalk
  38. - custom/matrix-bridge-beeper-linkedin
  39. - custom/matrix-bridge-go-skype-bridge
  40. - custom/matrix-bridge-mautrix-facebook
  41. - custom/matrix-bridge-mautrix-twitter
  42. - custom/matrix-bridge-mautrix-hangouts
  43. - custom/matrix-bridge-mautrix-googlechat
  44. - custom/matrix-bridge-mautrix-instagram
  45. - custom/matrix-bridge-mautrix-signal
  46. - custom/matrix-bridge-mautrix-telegram
  47. - custom/matrix-bridge-mautrix-whatsapp
  48. - custom/matrix-bridge-mautrix-discord
  49. - custom/matrix-bridge-mx-puppet-discord
  50. - custom/matrix-bridge-mx-puppet-groupme
  51. - custom/matrix-bridge-mx-puppet-steam
  52. - custom/matrix-bridge-mx-puppet-slack
  53. - custom/matrix-bridge-mx-puppet-twitter
  54. - custom/matrix-bridge-mx-puppet-instagram
  55. - custom/matrix-bridge-sms
  56. - custom/matrix-bridge-heisenbridge
  57. - custom/matrix-bridge-hookshot
  58. - custom/matrix-bot-matrix-reminder-bot
  59. - custom/matrix-bot-matrix-registration-bot
  60. - custom/matrix-bot-maubot
  61. - custom/matrix-bot-buscarron
  62. - custom/matrix-bot-honoroit
  63. - custom/matrix-bot-postmoogle
  64. - custom/matrix-bot-go-neb
  65. - custom/matrix-bot-mjolnir
  66. - custom/matrix-cactus-comments
  67. - custom/matrix-synapse
  68. - custom/matrix-synapse-reverse-proxy-companion
  69. - custom/matrix-dendrite
  70. - custom/matrix-conduit
  71. - custom/matrix-synapse-admin
  72. - custom/matrix-prometheus-node-exporter
  73. - custom/matrix-prometheus-postgres-exporter
  74. - custom/matrix-prometheus
  75. - custom/matrix-grafana
  76. - custom/matrix-registration
  77. - custom/matrix-client-element
  78. - custom/matrix-client-hydrogen
  79. - custom/matrix-client-cinny
  80. - custom/matrix-jitsi
  81. - custom/matrix-ldap-registration-proxy
  82. - custom/matrix-ma1sd
  83. - custom/matrix-dimension
  84. - custom/matrix-etherpad
  85. - custom/matrix-email2matrix
  86. - custom/matrix-sygnal
  87. - custom/matrix-ntfy
  88. - custom/matrix-nginx-proxy
  89. - custom/matrix-coturn
  90. - custom/matrix-aux
  91. - custom/matrix-postgres-backup
  92. - custom/matrix-backup-borg
  93. - custom/matrix-user-creator
  94. - custom/matrix-common-after
  95. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  96. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  97. - when: devture_playbook_state_preserver_enabled | bool
  98. role: galaxy/com.devture.ansible.role.playbook_state_preserver
  99. tags:
  100. - setup-all
  101. - role: galaxy/com.devture.ansible.role.playbook_runtime_messages