We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62b308 commit fa7f9cbCopy full SHA for fa7f9cb
.github/workflows/deploy-docs-vps.yml
@@ -94,12 +94,15 @@ jobs:
94
grep -E "^[0-9]+$" | \
95
xargs -I {} docker rmi archbase-java-docs:{} 2>/dev/null || true
96
97
+ # Remover imagens dangling (<none>)
98
+ docker images -f "dangling=true" -q | xargs -r docker rmi -f 2>/dev/null || true
99
+
100
- name: Docker system prune
101
run: |
- # Remover imagens dangling, containers parados e cache de build
102
+ # Remover imagens não usadas, containers parados e cache de build
103
docker image prune -a -f
104
docker container prune -f
- docker system prune -f
105
+ docker system prune -a -f
106
# Exibir uso de disco após limpeza
107
echo "=== Uso de disco após limpeza ==="
108
df -h /var/lib/docker
0 commit comments