16 lines
333 B
Bash
Executable file
16 lines
333 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
IMAGES=(
|
|
# keep-sorted start
|
|
docker.io/ollama/ollama:latest
|
|
docker.io/plantuml/plantuml-server:jetty
|
|
ghcr.io/hadolint/hadolint:latest
|
|
ghcr.io/mongodb/kingfisher:latest
|
|
lscr.io/linuxserver/transmission:latest
|
|
# keep-sorted end
|
|
)
|
|
|
|
podman pull "${IMAGES[@]}"
|