Skip to content

Instantly share code, notes, and snippets.

@lalyos
Created November 21, 2014 20:43
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save lalyos/50ac584bf0dc6ccb061f to your computer and use it in GitHub Desktop.
Save lalyos/50ac584bf0dc6ccb061f to your computer and use it in GitHub Desktop.
script to save all docker image, and load them back
reload() {
source ${BASH_SOURCE[0]}
}
alias r=reload
get-image-field() {
local imageId=$1
local field=$2
: ${imageId:? reuired}
: ${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-image() {
local ids=$(docker images -q)
local name safename tag
for id in $ids; do
name=$(get-image-name $id)
tag=$(get-image-tag $id)
if [[ $name =~ / ]] ; then
dir=${name%/*}
mkdir -p $dir
fi
echo [DEBUG] save $name:$tag ...
(time docker save -o $name.$tag.dim $name:$tag) 2>&1|grep real
done
}
load-all-image() {
local name safename noextension tag
for image in $(find . -name \*.dim); do
echo [DEBUG] load
tar -Oxf $image repositories
echo
docker load -i $image
done
}
@johndpope-karhoo
Copy link

seems broken?

@grayaii
Copy link

grayaii commented Sep 9, 2016

Looks ok to me. I just tried it (granted, I only "saved" and not "loaded").

@mitchellchris1
Copy link

worked

@qastmoran
Copy link

I only made one modification and added use instructions to call the functions as arguments:

[root@localhost ~]# cat docker_images.sh

How to used

save images

./docker_images.sh save-all

restore images

./docker_images.sh load-all

reload() {
source ${BASH_SOURCE[0]}
}
alias r=reload

get-image-field() {
local imageId=$1
local field=$2
: ${imageId:? reuired}
: ${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() {
local ids=$(docker images -q)
local name safename tag

for id in $ids; do
name=$(get-image-name $id)
tag=$(get-image-tag $id)
if [[ $name =~ / ]] ; then
dir=${name%/*}
mkdir -p $dir
fi
echo [DEBUG] save $name:$tag ...
(time docker save -o $name.$tag.dim $name:$tag) 2>&1|grep real
done
}

load-all() {
local name safename noextension tag

for image in $(find . -name *.dim); do
echo [DEBUG] load
tar -Oxf $image repositories
echo
docker load -i $image
done
}
$@

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment