Compare commits
3 commits
ec5ed3cf1f
...
b16f6c410e
| Author | SHA1 | Date | |
|---|---|---|---|
| b16f6c410e | |||
| 8c3126e47e | |||
| fdb2da7942 |
4 changed files with 27 additions and 0 deletions
6
.config/setup/41-download-container-images.sh
Executable file
6
.config/setup/41-download-container-images.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#! /usr/bin/bash
|
||||
|
||||
set -euo pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
update-container-images
|
||||
6
.local/bin/docker
Executable file
6
.local/bin/docker
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#! /usr/bin/bash
|
||||
|
||||
set -euo pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
podman "${@:1}"
|
||||
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[@]}"
|
||||
|
|
@ -30,3 +30,4 @@ pipx_update
|
|||
cargo_update
|
||||
ghup
|
||||
git_sync_update
|
||||
update-container-images
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue