Files
ansible-docker/roles/docker/molecule/default/verify.yml
2023-07-19 09:55:18 +03:00

13 lines
277 B
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: Docker hello world container
community.docker.docker_container:
name: hello-world
image: hello-world
detach: false
cleanup: true
register: docker_hello_world