Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chengdh/07a30b75af658208550cdefc58906bb1 to your computer and use it in GitHub Desktop.
Save chengdh/07a30b75af658208550cdefc58906bb1 to your computer and use it in GitHub Desktop.
Script to save all images from a docker-compose.yml file
#!/bin/bash
mkdir -p out
for img in `grep image $1| sed -e 's/^.*image\: //g'`;
do
cleanname=${img/\//-}
tag=`docker images | grep $img | awk '{print $2}'`
echo "Exporting image: $img, tag:$tag ($cleanname)..."
docker save $img -o out/$cleanname.tar
ls -lah out/$cleanname.tar
tar -czvf out/$cleanname.tgz out/$cleanname.tar
rm -rf out/$cleanname.tar
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment