Files
ansible-common/roles/docker/handlers/main.yml
2024-09-25 23:52:32 +02:00

18 lines
381 B
YAML

---
- name: test docker setup
become: true
community.docker.docker_container:
state: started
name: hello-world
image: hello-world
register: docker_test
when: docker_install is changed
- name: remove test container
become: true
community.docker.docker_container:
state: absent
name: hello-world
image: hello-world
when: docker_test is changed