Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 regels
581 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Resetting Hookshot's crypto store
  6. ansible.builtin.command:
  7. cmd: |
  8. {{ devture_systemd_docker_base_host_command_docker }} run
  9. --rm
  10. --name={{ matrix_hookshot_identifier }}-reset-crypto
  11. --user={{ matrix_user_uid }}:{{ matrix_user_gid }}
  12. --cap-drop=ALL
  13. --mount type=bind,src={{ matrix_hookshot_base_path }}/config.yml,dst=/config.yml
  14. {{ matrix_hookshot_docker_image }}
  15. yarn start:resetcrypto
  16. changed_when: true