9 lines
203 B
YAML
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 |