- "'hello-world:latest' in result.images[0].RepoTags"
- name:Inspect multiple images
docker_image_info:
name:
- "hello-world:latest"
- "alpine:3.8"
register:result
- debug:var=result
- assert:
that:
- "result.images|length == 2"
- "'hello-world:latest' in result.images[0].RepoTags"
- "'alpine:3.8' in result.images[1].RepoTags"
when:docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')
- fail:msg="Too old docker / docker-py version to run docker_image_info tests!"
when:not(docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)