--- # This is an example playbook to execute Ansible tests. - name: Verify hosts: all gather_facts: false tasks: - name: Get container state docker_container_info: name: hello_world register: result - name: Check Hello World is running assert: that: - result.container['State']['Status'] == "running" - result.container['State']['Restarting'] == false