Files
ansible-common/roles/docker/handlers/main.yml
dede f5aa61b3c0 !fix(docker): update docker role
* update package names
* remove dist install option
* fix handlers for testing the setup
2024-12-28 10:01:34 +01:00

19 lines
453 B
YAML

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