14 lines
296 B
YAML
14 lines
296 B
YAML
- hosts: "{{ hosts }}"
|
|
|
|
tasks:
|
|
|
|
- name: Prune non-dangling, and dangling images
|
|
community.docker.docker_prune:
|
|
containers: false
|
|
images: true
|
|
images_filters:
|
|
dangling: false
|
|
networks: false
|
|
volumes: false
|
|
builder_cache: false
|