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