Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

128 řádky
4.3 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. - 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-mx-puppet-discord
  56. - custom/matrix-bridge-mx-puppet-groupme
  57. - custom/matrix-bridge-mx-puppet-steam
  58. - custom/matrix-bridge-mx-puppet-slack
  59. - custom/matrix-bridge-mx-puppet-twitter
  60. - custom/matrix-bridge-mx-puppet-instagram
  61. - custom/matrix-bridge-sms
  62. - custom/matrix-bridge-heisenbridge
  63. - custom/matrix-bridge-hookshot
  64. - custom/matrix-bot-matrix-reminder-bot
  65. - custom/matrix-bot-matrix-registration-bot
  66. - custom/matrix-bot-maubot
  67. - custom/matrix-bot-buscarron
  68. - custom/matrix-bot-honoroit
  69. - custom/matrix-bot-postmoogle
  70. - custom/matrix-bot-go-neb
  71. - custom/matrix-bot-mjolnir
  72. - custom/matrix-cactus-comments
  73. - custom/matrix-synapse
  74. - custom/matrix-synapse-reverse-proxy-companion
  75. - custom/matrix-dendrite
  76. - custom/matrix-conduit
  77. - custom/matrix-synapse-admin
  78. - custom/matrix-prometheus-node-exporter
  79. - custom/matrix-prometheus-postgres-exporter
  80. - custom/matrix-prometheus-nginxlog-exporter
  81. - custom/matrix-prometheus
  82. - custom/matrix-grafana
  83. - custom/matrix-registration
  84. - custom/matrix-client-element
  85. - custom/matrix-client-hydrogen
  86. - custom/matrix-client-cinny
  87. - custom/matrix-jitsi
  88. - custom/matrix-user-verification-service
  89. - custom/matrix-ldap-registration-proxy
  90. - custom/matrix-ma1sd
  91. - custom/matrix-dimension
  92. - custom/matrix-etherpad
  93. - custom/matrix-email2matrix
  94. - custom/matrix-sygnal
  95. - custom/matrix-ntfy
  96. - custom/matrix-nginx-proxy
  97. - custom/matrix-coturn
  98. - custom/matrix-aux
  99. - role: galaxy/com.devture.ansible.role.postgres_backup
  100. - custom/matrix-backup-borg
  101. - custom/matrix-user-creator
  102. - custom/matrix-common-after
  103. - when: devture_systemd_service_manager_enabled | bool
  104. role: galaxy/com.devture.ansible.role.systemd_service_manager
  105. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  106. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  107. - when: devture_playbook_state_preserver_enabled | bool
  108. role: galaxy/com.devture.ansible.role.playbook_state_preserver
  109. tags:
  110. - setup-all
  111. - install-all
  112. - role: galaxy/com.devture.ansible.role.playbook_runtime_messages