ansible-role-authentik/molecule/default/prepare.yml

13 lines
336 B
YAML
Raw Normal View History

2022-09-16 16:07:01 +02:00
---
- name: Setup the intragate machine
hosts: instance-authentik
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.sock /var/run/docker.sock
become: true
changed_when: false