14 lines
250 B
Bash
Executable file
14 lines
250 B
Bash
Executable file
#! /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[@]}"
|