2013-03-11 22:03:22 -04:00
|
|
|
#!/bin/sh
|
2013-03-12 02:13:08 -04:00
|
|
|
# This script is meant for quick & easy install via 'curl URL-OF-SCRIPT | sh'
|
2013-02-25 15:27:29 -05:00
|
|
|
# Courtesy of Jeff Lindsay <progrium@gmail.com>
|
|
|
|
|
2013-03-12 02:09:19 -04:00
|
|
|
echo "Ensuring basic dependencies are installed..."
|
|
|
|
apt-get -qq update
|
|
|
|
apt-get -qq install lxc wget bsdtar
|
|
|
|
|
|
|
|
echo "Looking in /proc/filesystems to see if we have AUFS support..."
|
|
|
|
if grep -q aufs /proc/filesystems
|
|
|
|
then
|
|
|
|
echo "Found."
|
|
|
|
else
|
|
|
|
echo "Ahem, it looks like the current kernel does not support AUFS."
|
|
|
|
echo "Let's see if we can load the AUFS module with modprobe..."
|
|
|
|
if modprobe aufs
|
|
|
|
then
|
|
|
|
echo "Module loaded."
|
|
|
|
else
|
|
|
|
echo "Ahem, things didn't turn out as expected."
|
|
|
|
KPKG=linux-image-extra-$(uname -r)
|
|
|
|
echo "Trying to install $KPKG..."
|
|
|
|
if apt-get -qq install $KPKG
|
|
|
|
then
|
|
|
|
echo "Installed."
|
|
|
|
else
|
|
|
|
echo "Oops, we couldn't install the -extra kernel."
|
|
|
|
echo "Are you sure you are running a supported version of Ubuntu?"
|
|
|
|
echo "Proceeding anyway, but Docker will probably NOT WORK!"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2013-02-25 15:27:29 -05:00
|
|
|
|
2013-03-12 02:07:16 -04:00
|
|
|
echo "Downloading docker binary and uncompressing into /usr/local/bin..."
|
|
|
|
curl -s http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz |
|
|
|
|
tar -C /usr/local/bin --strip-components=1 -zxf- \
|
|
|
|
docker-master/docker docker-master/dockerd
|
2013-02-25 15:27:29 -05:00
|
|
|
|
2013-03-12 02:13:08 -04:00
|
|
|
if [ -f /etc/init/dockerd.conf ]
|
2013-02-25 15:27:29 -05:00
|
|
|
then
|
|
|
|
echo "Upstart script already exists."
|
|
|
|
else
|
|
|
|
echo "Creating /etc/init/dockerd.conf..."
|
|
|
|
echo "exec /usr/local/bin/dockerd" > /etc/init/dockerd.conf
|
|
|
|
fi
|
|
|
|
|
2013-03-12 02:08:21 -04:00
|
|
|
echo "Starting dockerd..."
|
|
|
|
start dockerd > /dev/null
|
2013-02-25 15:27:29 -05:00
|
|
|
|
|
|
|
echo "Finished!"
|
|
|
|
echo
|