2023-11-01 16:05:22 +01:00
|
|
|
---
|
2023-12-16 09:21:31 +02:00
|
|
|
|
2023-11-01 16:05:22 +01:00
|
|
|
- name: Resetting Hookshot's crypto store
|
|
|
|
ansible.builtin.command:
|
|
|
|
cmd: |
|
|
|
|
{{ devture_systemd_docker_base_host_command_docker }} run
|
|
|
|
--rm
|
2023-12-14 23:31:19 +01:00
|
|
|
--name={{ matrix_hookshot_container_ident }}-reset-crypto
|
2023-11-01 16:05:22 +01:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
|
|
|
|
--cap-drop=ALL
|
2023-12-15 22:28:52 +01:00
|
|
|
--mount type=bind,src={{ matrix_hookshot_base_path }}/config.yml,dst=/config.yml
|
|
|
|
{{ matrix_hookshot_docker_image }}
|
2023-12-16 09:21:31 +02:00
|
|
|
yarn start:resetcrypto
|
|
|
|
changed_when: true
|