Files
Ansible/dockerclean.yml
2025-07-31 12:46:14 +02:00

9 lines
203 B
YAML

---
- name: Prune unused Docker images
hosts: all
become: yes
tasks:
- name: Prune all unused Docker images
ansible.builtin.shell: docker image prune -a -f
args:
warn: false