add prune separately for manual run
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Torma Kristóf 2023-08-31 00:08:06 +02:00
parent d02b1ed916
commit b6a2827f82
3 changed files with 16 additions and 0 deletions

6
prune.yaml Normal file
View File

@ -0,0 +1,6 @@
---
- name: "Prune all services"
hosts: commonupdate
roles:
- prune
...

View File

@ -2,4 +2,5 @@
collections:
- ansible.posix
- community.general
- community.docker
...

View File

@ -0,0 +1,9 @@
---
- name: Prune everything
community.docker.docker_prune:
containers: true
images: true
networks: true
volumes: true
builder_cache: true
...