fix docker prune playbook

This commit is contained in:
Matt Reeves 2024-09-23 00:00:18 -04:00
parent f7552a3f64
commit 3e63d78e62

View file

@ -3,9 +3,7 @@
hosts: all hosts: all
become: true become: true
tasks: tasks:
- name: Prune unused Docker images - name: Prune unused Docker images using shell
docker_image: shell: docker image prune -f
name: all args:
state: absent warn: false
force: yes
prune: yes