7 lines
177 B
YAML
7 lines
177 B
YAML
- name: Pull image
|
|
ansible.builtin.shell: docker pull {{ image }}
|
|
register: image_info
|
|
|
|
- name: Display image info
|
|
ansible.builtin.debug:
|
|
var: image_info.stdout_lines
|