14 lines
354 B
YAML
14 lines
354 B
YAML
---
|
|
# this is needed because https://github.com/rycus86/podlike/issues/6
|
|
- name: 'Pull all images for "{{ service }}"'
|
|
community.docker.docker_image:
|
|
name: "{{ image }}"
|
|
source: pull
|
|
force_source: yes
|
|
with_items:
|
|
- registry.kadet.net/wipe/php-fpm:{{ wipe_version }}
|
|
loop_control:
|
|
loop_var: image
|
|
notify:
|
|
- Restart services
|