-
-
Save mmrko/78a071d0ff2062cb199a852e2469586f to your computer and use it in GitHub Desktop.
Script to (selectively) save/load multiple Docker images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Script to (selectively) save/load multiple Docker images to/from a directory. | |
# Run ./save-load-docker-images.sh for help. | |
set -e | |
directory=$PWD | |
filter="" | |
compress=0 | |
while getopts ":f:d:z" opt ${@:2}; do | |
case $opt in | |
f) | |
filter=$OPTARG | |
;; | |
d) | |
directory=$OPTARG | |
;; | |
z) | |
compress=1 | |
;; | |
\?) | |
echo "Invalid option: -$OPTARG" >&2 | |
;; | |
esac | |
done | |
help () { | |
echo | |
echo "\ | |
Usage: save [-f filter] [-d dir] Save all Docker images to a directory | |
load [-f filter] [-d dir] Find all saved images (.tar) in a directory then import to Docker | |
-d dir Directory to save/load images to/from (defaults to \$PWD) | |
-f filter Filter images by their name (inclusive) | |
-z Use gzip to compress/uncompress archives (saved/loaded as *.tar.gz)" | |
echo | |
} | |
get-image-field() { | |
local imageId=$1 | |
local field=$2 | |
: ${imageId:? required} | |
: ${field:? required} | |
docker images --no-trunc | sed -n "/${imageId}/s/ */ /gp" | cut -d " " -f $field | |
} | |
get-image-name() { | |
get-image-field $1 1 | |
} | |
get-image-tag() { | |
get-image-field $1 2 | |
} | |
save-all-images() { | |
local ids=$(docker images --no-trunc -q) | |
local name safename tag | |
for id in $ids; do | |
name=$(get-image-name $id) | |
tag=$(get-image-tag $id) | |
# Apply filter (if any) | |
if [[ ! -z "$filter" ]] && [[ ! "$name:$tag" =~ "$filter" ]];then | |
continue | |
fi | |
# Ignore stale images (tag == <none>) | |
if [[ "$tag" = "<none>" ]]; then | |
continue | |
fi | |
if [[ $name =~ / ]]; then | |
dir=${name%/*} | |
mkdir -p "$directory/$dir" | |
fi | |
echo "Saving $name:$tag ..." | |
if [[ $compress -eq 0 ]]; then | |
docker save -o "$directory/$name.$tag.tar" $name:$tag | |
else | |
docker save $name:$tag | gzip > "$directory/$name.$tag.tar.gz" | |
fi | |
done | |
} | |
load-all-images() { | |
local name safename noextension tag | |
if [[ $compress -eq 0 ]]; then | |
file_extension="tar" | |
else | |
file_extension="tar.gz" | |
fi | |
for image in $(find "$directory" -name \*.$file_extension); do | |
if [[ ! -z "$filter" ]] && [[ ! "$image" =~ "$filter" ]];then | |
continue | |
fi | |
echo "Loading $image ..." | |
docker load -i $image | |
done | |
} | |
case $1 in | |
save) | |
save-all-images | |
;; | |
load) | |
load-all-images | |
;; | |
*) | |
help | |
;; | |
esac | |
exit 0 |
Many thanks for the script. Please consider "merging" fix for the load command from my fork.
There is a minor problem with handling filter option in load command.
Example: we have two tar.gz files at path /home/username/oamgui_images:
- oamgui_container.tar.gz
- some_other.tar.gz
Calling script as ./save-load-docker-images.sh load -z -f "oamgui_" -d /home/username/oamgui_images
will try to load both files, since fullpath contains substring oamgui_. While expected behaviour is to load oamgui_container.tar.gz only.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very handy script >> Thanks a lot