mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-01-15 19:00:13 +01:00
70a8bea0ed
Add blank lines where it helps with readability (e.g., between each task) but also remove needless one.
15 lines
317 B
YAML
15 lines
317 B
YAML
---
|
|
- name: clean docker
|
|
hosts: "{{ my_hosts | d([]) }}"
|
|
|
|
tasks:
|
|
- name: prune non-dangling images
|
|
community.docker.docker_prune:
|
|
containers: false
|
|
images: true
|
|
images_filters:
|
|
dangling: false
|
|
networks: false
|
|
volumes: false
|
|
builder_cache: false
|