ansible-role-authentik/molecule/default/cleanup.yml
Laur Ivan 35dcd22825 Clean up molecule configuration.
Allow PostgreSQL to be exposed for backup.
Create network.
2022-09-19 17:08:23 +02:00

21 lines
593 B
YAML

---
- name: Clean up
hosts: all
gather_facts: true
tasks:
- name: Check if the docker-compose file exists.
ansible.builtin.stat:
path: "~/authentik/docker-compose.yml"
register: docker_compose_file
- name: Remove authentik docker-compose.
community.docker.docker_compose:
project_src: ~/authentik/
build: false
state: absent
when: docker_compose_file.stat.exists
become: false
- name: Remove the docker-compose file
ansible.builtin.file:
path: "~/authentik/docker-compose.yml"
state: absent