Keep container images up-to-date
This commit is contained in:
parent
fdb2da7942
commit
8c3126e47e
2 changed files with 15 additions and 0 deletions
14
.local/bin/update-container-images
Executable file
14
.local/bin/update-container-images
Executable 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[@]}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue