Skip to content

feat: add option to remove loaded images #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions run_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ while [ -n "${1:-}" ]; do case $1 in
shift
continue ;;

--prune-loaded-images)
prune_loaded_images=1
shift
continue ;;

--ci-values)
shift
if [[ -z "${1:-}" ]]; then
Expand Down Expand Up @@ -567,12 +572,16 @@ fi


# Load images into kind

if [ ${#docker_images_to_load[@]} -ne 0 ]; then
printf "%b Loading docker images...\n" ${UNICORN_EMOJI}
for img_name in "${docker_images_to_load[@]}"
do
"${demo_dir}/kind" --name diracx-demo load docker-image "${img_name}"
printf "%b Loading docker images...\n" ${UNICORN_EMOJI}
for img_name in "${docker_images_to_load[@]}"; do
"${demo_dir}/kind" --name diracx-demo load docker-image "${img_name}"

if [[ ${prune_loaded_images:-0} -eq 1 ]]; then
printf "%b Pruning ${img_name} locally\n" ${UNICORN_EMOJI}
# Delete the tag (will delete the layers if no other tag is using them)
docker image rm -f "${img_name}"
fi
done


Expand Down