Keep container images up-to-date

This commit is contained in:
Ohad Livne 2025-12-06 20:57:38 +02:00
parent fdb2da7942
commit 8c3126e47e
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
IMAGES=(
# keep-sorted start
docker.io/ollama/ollama:latest
ghcr.io/hadolint/hadolint:latest
lscr.io/linuxserver/transmission:latest
# keep-sorted end
)
podman pull "${IMAGES[@]}"

View file

@ -30,3 +30,4 @@ pipx_update
cargo_update cargo_update
ghup ghup
git_sync_update git_sync_update
update-container-images