Compare commits

..

No commits in common. "f0d9d8891a55c7fcd8e36f3accb40b0842d19ac1" and "bf927408230c9062becfe2649dba0decc0716231" have entirely different histories.

3 changed files with 0 additions and 13 deletions

View file

@ -1,4 +1,3 @@
# keep-sorted start
DOCKER_HOST=unix:///run/user/1000/podman/podman.sock
TESTCONTAINERS_RYUK_DISABLED=true
# keep-sorted end

View file

@ -8,7 +8,6 @@ IMAGES=(
docker.io/ollama/ollama:latest
docker.io/plantuml/plantuml-server:jetty
ghcr.io/hadolint/hadolint:latest
ghcr.io/mongodb/kingfisher:latest
lscr.io/linuxserver/transmission:latest
# keep-sorted end
)

View file

@ -1,11 +0,0 @@
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
buildah_containers="$(buildah list | tail --lines +2 | cut --delimiter ' ' --fields 1)"
if [ -z "${buildah_containers}" ]; then
echo "No containers to remove"
else
buildah rm "${buildah_containers}"
fi