13 lines
287 B
YAML
13 lines
287 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
|
||
|
tasks:
|
||
|
- name: Prune non-dangling, and dangling images
|
||
|
community.docker.docker_prune:
|
||
|
containers: false
|
||
|
images: true
|
||
|
images_filters:
|
||
|
dangling: true
|
||
|
networks: false
|
||
|
volumes: false
|
||
|
builder_cache: false
|