Created
July 29, 2016 11:35
-
-
Save Dolbager/7363a309dae867c7f386bead89cb4a04 to your computer and use it in GitHub Desktop.
crate docker base image
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
#!/bin/sh | |
set -e | |
image_tag="ubuntu-base-14.04-i386:initial" | |
debootstrap --arch=i386 trusty /tmp/rootfs32 | |
tar czf /tmp/trusty_base32_rootfs.tgz -C /tmp/rootfs32 . | |
echo "" | |
image_id=`cat /tmp/trusty_base32_rootfs.tgz | docker import - $image_tag` | |
if [ -n "$image_id" ]; then | |
rm -rf /tmp/rootfs32 | |
rm /tmp/trusty_base32_rootfs.tgz | |
echo "Successfully built $image_id" | |
else | |
echo "Error importing into docker, tmp files saved: /tmp/rootfs32, /tmp/trusty_base32_rootfs.tgz" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment