2014-01-21 20:21:56 -05:00
|
|
|
#!/usr/bin/env bash
|
2013-06-26 15:35:14 -04:00
|
|
|
# Generate a very minimal filesystem based on busybox-static,
|
|
|
|
# and load it into the local docker under the name "docker-ut".
|
|
|
|
|
|
|
|
missing_pkg() {
|
|
|
|
echo "Sorry, I could not locate $1"
|
|
|
|
echo "Try 'apt-get install ${2:-$1}'?"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
BUSYBOX=$(which busybox)
|
|
|
|
[ "$BUSYBOX" ] || missing_pkg busybox busybox-static
|
|
|
|
SOCAT=$(which socat)
|
|
|
|
[ "$SOCAT" ] || missing_pkg socat
|
|
|
|
|
|
|
|
shopt -s extglob
|
|
|
|
set -ex
|
2014-06-27 08:43:12 -04:00
|
|
|
ROOTFS=`mktemp -d ${TMPDIR:-/var/tmp}/rootfs-busybox.XXXXXXXXXX`
|
2013-06-26 15:35:14 -04:00
|
|
|
trap "rm -rf $ROOTFS" INT QUIT TERM
|
|
|
|
cd $ROOTFS
|
|
|
|
|
|
|
|
mkdir bin etc dev dev/pts lib proc sys tmp
|
|
|
|
touch etc/resolv.conf
|
|
|
|
cp /etc/nsswitch.conf etc/nsswitch.conf
|
|
|
|
echo root:x:0:0:root:/:/bin/sh > etc/passwd
|
2013-07-01 20:19:39 -04:00
|
|
|
echo daemon:x:1:1:daemon:/usr/sbin:/bin/sh >> etc/passwd
|
2013-06-26 15:35:14 -04:00
|
|
|
echo root:x:0: > etc/group
|
2013-07-01 20:19:39 -04:00
|
|
|
echo daemon:x:1: >> etc/group
|
2013-06-26 15:35:14 -04:00
|
|
|
ln -s lib lib64
|
|
|
|
ln -s bin sbin
|
|
|
|
cp $BUSYBOX $SOCAT bin
|
|
|
|
for X in $(busybox --list)
|
|
|
|
do
|
|
|
|
ln -s busybox bin/$X
|
|
|
|
done
|
|
|
|
rm bin/init
|
|
|
|
ln bin/busybox bin/init
|
|
|
|
cp -P /lib/x86_64-linux-gnu/lib{pthread*,c*(-*),dl*(-*),nsl*(-*),nss_*,util*(-*),wrap,z}.so* lib
|
|
|
|
cp /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 lib
|
|
|
|
cp -P /usr/lib/x86_64-linux-gnu/lib{crypto,ssl}.so* lib
|
|
|
|
for X in console null ptmx random stdin stdout stderr tty urandom zero
|
|
|
|
do
|
|
|
|
cp -a /dev/$X dev
|
|
|
|
done
|
|
|
|
|
2013-07-01 20:19:39 -04:00
|
|
|
chmod 0755 $ROOTFS # See #486
|
2013-10-23 16:08:16 -04:00
|
|
|
tar --numeric-owner -cf- . | docker import - docker-ut
|
2013-06-26 15:35:14 -04:00
|
|
|
docker run -i -u root docker-ut /bin/echo Success.
|
|
|
|
rm -rf $ROOTFS
|