Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

120 líneas
4.1 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. - role: galaxy/com.devture.ansible.role.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-nginxlog-exporter
  75. - custom/matrix-prometheus
  76. - custom/matrix-grafana
  77. - custom/matrix-registration
  78. - custom/matrix-client-element
  79. - custom/matrix-client-hydrogen
  80. - custom/matrix-client-cinny
  81. - custom/matrix-jitsi
  82. - custom/matrix-ldap-registration-proxy
  83. - custom/matrix-ma1sd
  84. - custom/matrix-dimension
  85. - custom/matrix-etherpad
  86. - custom/matrix-email2matrix
  87. - custom/matrix-sygnal
  88. - custom/matrix-ntfy
  89. - custom/matrix-nginx-proxy
  90. - custom/matrix-coturn
  91. - custom/matrix-aux
  92. - role: galaxy/com.devture.ansible.role.postgres_backup
  93. - custom/matrix-backup-borg
  94. - custom/matrix-user-creator
  95. - custom/matrix-common-after
  96. - when: devture_systemd_service_manager_enabled | bool
  97. role: galaxy/com.devture.ansible.role.systemd_service_manager
  98. # This is pretty much last, because we want it to better serve as a "last known good configuration".
  99. # See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2217#issuecomment-1301487601
  100. - when: devture_playbook_state_preserver_enabled | bool
  101. role: galaxy/com.devture.ansible.role.playbook_state_preserver
  102. tags:
  103. - setup-all
  104. - role: galaxy/com.devture.ansible.role.playbook_runtime_messages