Compare commits

...

3 commits

4 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
update-container-images

6
.local/bin/docker Executable file
View file

@ -0,0 +1,6 @@
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
podman "${@:1}"

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