Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

17 Zeilen
727 B

  1. ---
  2. # `yarn start:resetcrypto` fails, as described here: https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3868
  3. # Also related to: https://github.com/matrix-org/matrix-hookshot/issues/730
  4. - name: Resetting Hookshot's crypto store
  5. ansible.builtin.command:
  6. cmd: |
  7. {{ devture_systemd_docker_base_host_command_docker }} run
  8. --rm
  9. --name={{ matrix_hookshot_identifier }}-reset-crypto
  10. --user={{ matrix_user_uid }}:{{ matrix_user_gid }}
  11. --cap-drop=ALL
  12. --mount type=bind,src={{ matrix_hookshot_base_path }},dst=/data
  13. {{ matrix_hookshot_docker_image }}
  14. node --require source-map-support/register /usr/bin/matrix-hookshot/App/ResetCryptoStore.js
  15. changed_when: true