mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8 lines
332 B
YAML
8 lines
332 B
YAML
|
- name: Check Docker API version
|
||
|
command: "{{ ansible_python.executable }} -c 'import docker; print(docker.from_env().version()[\"ApiVersion\"])'"
|
||
|
register: docker_api_version
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- include_tasks: test_docker_config.yml
|
||
|
when: docker_api_version.rc == 0 and docker_api_version.stdout is version('1.30', '>=')
|