mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
287e604a8f
Additionally, this can be overridden by setting the TMPDIR variable, like this was already the case for the generic `mkimage.sh` script. As explained in #6456, the rationale to use `/var/tmp` instead of `/tmp` is that `/tmp` is often a small tmpfs filesystem with more restricted rights. Docker-DCO-1.1-Signed-off-by: Vincent Bernat <vincent@bernat.im> (github: vincentbernat)
43 lines
1.1 KiB
Bash
Executable file
43 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Generate a very minimal filesystem based on busybox-static,
|
|
# and load it into the local docker under the name "busybox".
|
|
|
|
echo >&2
|
|
echo >&2 'warning: this script is deprecated - see mkimage.sh and mkimage/busybox-static'
|
|
echo >&2
|
|
|
|
BUSYBOX=$(which busybox)
|
|
[ "$BUSYBOX" ] || {
|
|
echo "Sorry, I could not locate busybox."
|
|
echo "Try 'apt-get install busybox-static'?"
|
|
exit 1
|
|
}
|
|
|
|
set -e
|
|
ROOTFS=${TMPDIR:-/var/tmp}/rootfs-busybox-$$-$RANDOM
|
|
mkdir $ROOTFS
|
|
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
|
|
echo root:x:0: > etc/group
|
|
ln -s lib lib64
|
|
ln -s bin sbin
|
|
cp $BUSYBOX bin
|
|
for X in $(busybox --list)
|
|
do
|
|
ln -s busybox bin/$X
|
|
done
|
|
rm bin/init
|
|
ln bin/busybox bin/init
|
|
cp /lib/x86_64-linux-gnu/lib{pthread,c,dl,nsl,nss_*}.so.* lib
|
|
cp /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 lib
|
|
for X in console null ptmx random stdin stdout stderr tty urandom zero
|
|
do
|
|
cp -a /dev/$X dev
|
|
done
|
|
|
|
tar --numeric-owner -cf- . | docker import - busybox
|
|
docker run -i -u root busybox /bin/echo Success.
|