From 5c701586d8109b35a544933f556e93dd0783778f Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Thu, 15 Jan 2026 13:28:23 +0200 Subject: [PATCH 1/3] Create a script to clean up dangling buildah containers --- .local/bin/clear-buildah | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 .local/bin/clear-buildah diff --git a/.local/bin/clear-buildah b/.local/bin/clear-buildah new file mode 100755 index 0000000..591aebd --- /dev/null +++ b/.local/bin/clear-buildah @@ -0,0 +1,11 @@ +#! /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 From c5d3f372226fe0fa435c07c145cbb3652c049d8c Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Thu, 15 Jan 2026 15:45:05 +0200 Subject: [PATCH 2/3] Disable the testcontainers reaper service by default --- .config/environment.d/testcontainers.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/environment.d/testcontainers.conf b/.config/environment.d/testcontainers.conf index 8e07e7f..ada45f6 100644 --- a/.config/environment.d/testcontainers.conf +++ b/.config/environment.d/testcontainers.conf @@ -1,3 +1,4 @@ # keep-sorted start DOCKER_HOST=unix:///run/user/1000/podman/podman.sock +TESTCONTAINERS_RYUK_DISABLED=true # keep-sorted end From f0d9d8891a55c7fcd8e36f3accb40b0842d19ac1 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Thu, 15 Jan 2026 16:01:03 +0200 Subject: [PATCH 3/3] Install the Kingfisher service image for secret detection --- .config/setup/41-download-container-images.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/setup/41-download-container-images.sh b/.config/setup/41-download-container-images.sh index df5f93f..07f44a6 100755 --- a/.config/setup/41-download-container-images.sh +++ b/.config/setup/41-download-container-images.sh @@ -8,6 +8,7 @@ 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 )