ansible/playbooks/servers/docker-cleanup.yml

13 lines
283 B
YAML
Raw Normal View History

---
- hosts: all
tasks:
2024-12-17 10:39:43 +01:00
- 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