11 lines
270 B
YAML
Raw Normal View History

---
- name: Pulling inspection store container image
docker_image:
name: "{{ item.value.image }}"
repository: "{{ item.value.image }}"
state: present
with_dict: "{{ inspection_store_services }}"
when:
- item.value.enabled
- action != 'destroy'