2015-02-28 00:53:36 -05:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# hello-world latest ef872312fe1b 3 months ago 910 B
|
|
|
|
# hello-world latest ef872312fe1bbc5e05aae626791a47ee9b032efa8f3bda39cc0be7b56bfe59b9 3 months ago 910 B
|
|
|
|
|
|
|
|
# debian latest f6fab3b798be 10 weeks ago 85.1 MB
|
|
|
|
# debian latest f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd 10 weeks ago 85.1 MB
|
|
|
|
|
2015-03-18 01:08:17 -04:00
|
|
|
if ! command -v curl &> /dev/null; then
|
|
|
|
echo >&2 'error: "curl" not found!'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-02-28 00:53:36 -05:00
|
|
|
usage() {
|
2015-08-31 13:06:22 -04:00
|
|
|
echo "usage: $0 dir image[:tag][@digest] ..."
|
|
|
|
echo " $0 /tmp/old-hello-world hello-world:latest@sha256:8be990ef2aeb16dbcb9271ddfe2610fa6658d13f6dfb8bc72074cc1ca36966a7"
|
2015-02-28 00:53:36 -05:00
|
|
|
[ -z "$1" ] || exit "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
dir="$1" # dir for building tar in
|
|
|
|
shift || usage 1 >&2
|
|
|
|
|
|
|
|
[ $# -gt 0 -a "$dir" ] || usage 2 >&2
|
|
|
|
mkdir -p "$dir"
|
|
|
|
|
2015-03-12 12:09:23 -04:00
|
|
|
# hacky workarounds for Bash 3 support (no associative arrays)
|
|
|
|
images=()
|
|
|
|
rm -f "$dir"/tags-*.tmp
|
|
|
|
# repositories[busybox]='"latest": "...", "ubuntu-14.04": "..."'
|
2015-02-28 00:53:36 -05:00
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
imageTag="$1"
|
|
|
|
shift
|
|
|
|
image="${imageTag%%[:@]*}"
|
2015-08-31 13:06:22 -04:00
|
|
|
imageTag="${imageTag#*:}"
|
|
|
|
digest="${imageTag##*@}"
|
|
|
|
tag="${imageTag%%@*}"
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
# add prefix library if passed official image
|
|
|
|
if [[ "$image" != *"/"* ]]; then
|
|
|
|
image="library/$image"
|
|
|
|
fi
|
2015-05-04 15:58:21 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
imageFile="${image//\//_}" # "/" can't be in filenames :)
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
token="$(curl -sSL "https://auth.docker.io/token?service=registry.docker.io&scope=repository:$image:pull" | jq --raw-output .token)"
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
manifestJson="$(curl -sSL -H "Authorization: Bearer $token" "https://registry-1.docker.io/v2/$image/manifests/$digest")"
|
|
|
|
if [ "${manifestJson:0:1}" != '{' ]; then
|
|
|
|
echo >&2 "error: /v2/$image/manifests/$digest returned something unexpected:"
|
|
|
|
echo >&2 " $manifestJson"
|
2015-02-28 00:53:36 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
layersFs=$(echo "$manifestJson" | jq --raw-output '.fsLayers | .[] | .blobSum')
|
|
|
|
|
|
|
|
IFS=$'\n'
|
2015-12-13 11:00:39 -05:00
|
|
|
# bash v4 on Windows CI requires CRLF separator
|
2015-12-06 17:37:07 -05:00
|
|
|
if [ "$(go env GOHOSTOS)" = 'windows' ]; then
|
|
|
|
major=$(echo ${BASH_VERSION%%[^0.9]} | cut -d. -f1)
|
|
|
|
if [ "$major" -ge 4 ]; then
|
|
|
|
IFS=$'\r\n'
|
|
|
|
fi
|
2015-12-13 11:00:39 -05:00
|
|
|
fi
|
2015-08-31 13:06:22 -04:00
|
|
|
layers=( ${layersFs} )
|
2015-02-28 00:53:36 -05:00
|
|
|
unset IFS
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
history=$(echo "$manifestJson" | jq '.history | [.[] | .v1Compatibility]')
|
|
|
|
imageId=$(echo "$history" | jq --raw-output .[0] | jq --raw-output .id)
|
|
|
|
|
2015-05-04 15:58:21 -04:00
|
|
|
if [ -s "$dir/tags-$imageFile.tmp" ]; then
|
|
|
|
echo -n ', ' >> "$dir/tags-$imageFile.tmp"
|
2015-03-12 12:09:23 -04:00
|
|
|
else
|
|
|
|
images=( "${images[@]}" "$image" )
|
|
|
|
fi
|
2015-05-04 15:58:21 -04:00
|
|
|
echo -n '"'"$tag"'": "'"$imageId"'"' >> "$dir/tags-$imageFile.tmp"
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
echo "Downloading '${image}:${tag}@${digest}' (${#layers[@]} layers)..."
|
|
|
|
for i in "${!layers[@]}"; do
|
|
|
|
imageJson=$(echo "$history" | jq --raw-output .[${i}])
|
|
|
|
imageId=$(echo "$imageJson" | jq --raw-output .id)
|
|
|
|
imageLayer=${layers[$i]}
|
|
|
|
|
2015-02-28 00:53:36 -05:00
|
|
|
mkdir -p "$dir/$imageId"
|
|
|
|
echo '1.0' > "$dir/$imageId/VERSION"
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-08-31 13:06:22 -04:00
|
|
|
echo "$imageJson" > "$dir/$imageId/json"
|
2015-03-25 13:38:17 -04:00
|
|
|
|
2015-02-28 00:53:36 -05:00
|
|
|
# TODO figure out why "-C -" doesn't work here
|
|
|
|
# "curl: (33) HTTP server doesn't seem to support byte ranges. Cannot resume."
|
|
|
|
# "HTTP/1.1 416 Requested Range Not Satisfiable"
|
|
|
|
if [ -f "$dir/$imageId/layer.tar" ]; then
|
|
|
|
# TODO hackpatch for no -C support :'(
|
|
|
|
echo "skipping existing ${imageId:0:12}"
|
|
|
|
continue
|
|
|
|
fi
|
2016-02-14 03:55:46 -05:00
|
|
|
token="$(curl -sSL "https://auth.docker.io/token?service=registry.docker.io&scope=repository:$image:pull" | jq --raw-output .token)"
|
2015-08-31 13:06:22 -04:00
|
|
|
curl -SL --progress -H "Authorization: Bearer $token" "https://registry-1.docker.io/v2/$image/blobs/$imageLayer" -o "$dir/$imageId/layer.tar" # -C -
|
2015-02-28 00:53:36 -05:00
|
|
|
done
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
|
|
|
|
echo -n '{' > "$dir/repositories"
|
|
|
|
firstImage=1
|
2015-03-12 12:09:23 -04:00
|
|
|
for image in "${images[@]}"; do
|
2015-05-04 15:58:21 -04:00
|
|
|
imageFile="${image//\//_}" # "/" can't be in filenames :)
|
2015-08-31 13:06:22 -04:00
|
|
|
image="${image#library\/}"
|
2015-05-04 15:58:21 -04:00
|
|
|
|
2015-02-28 00:53:36 -05:00
|
|
|
[ "$firstImage" ] || echo -n ',' >> "$dir/repositories"
|
|
|
|
firstImage=
|
|
|
|
echo -n $'\n\t' >> "$dir/repositories"
|
2015-05-04 15:58:21 -04:00
|
|
|
echo -n '"'"$image"'": { '"$(cat "$dir/tags-$imageFile.tmp")"' }' >> "$dir/repositories"
|
2015-02-28 00:53:36 -05:00
|
|
|
done
|
|
|
|
echo -n $'\n}\n' >> "$dir/repositories"
|
|
|
|
|
2015-03-12 12:09:23 -04:00
|
|
|
rm -f "$dir"/tags-*.tmp
|
|
|
|
|
2015-02-28 00:53:36 -05:00
|
|
|
echo "Download of images into '$dir' complete."
|
|
|
|
echo "Use something like the following to load the result into a Docker daemon:"
|
|
|
|
echo " tar -cC '$dir' . | docker load"
|