Files
Ansible/docker-prune
2025-07-31 12:47:20 +02:00

9 lines
203 B
Plaintext

---
- 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