ansible-role-authentik/molecule/default/prepare.yml
2022-09-18 13:11:29 +02:00

13 lines
324 B
YAML

---
- name: Setup the test machine
hosts: all
tasks:
- name: create docker.sock
raw: touch /var/run/docker.sock
become: true
changed_when: false
- name: move docker.sock from tmp
raw: mount --move /tmp/docker_mounted.sock /var/run/docker.sock
become: true
changed_when: false