Stop and remove running containers
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 33s
Podman Rootless Demo / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-21 13:50:36 -04:00
parent ba486f4f8c
commit 87be8433c6

View file

@ -209,7 +209,11 @@ jobs:
df -i /home/ci-service /tmp /var/tmp 2>/dev/null || df -i /tmp /var/tmp
- name: Safe storage pruning
run: podman --remote system prune -f
run: |
# Stop and remove any running containers first
podman --remote ps -aq | xargs -r podman --remote rm -f 2>/dev/null || true
# Then prune system
podman --remote system prune -f
- name: Build frontend container image
run: |