Files
ansible-docker/roles/docker/molecule/default/verify.yml
2023-07-14 15:34:29 +03:00

15 lines
334 B
YAML

---
# This is an example playbook to execute Ansible tests.
- 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