Created
March 27, 2018 21:57
-
-
Save zonca/f5faba190f5285c68dad48e897622e90 to your computer and use it in GitHub Desktop.
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/bash | |
apt-get update | |
apt-get install -y apt-transport-https | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
cat <<EOF >/etc/apt/sources.list.d/docker.list | |
deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable | |
EOF | |
apt-get update | |
apt-get install -y docker-ce | |
systemctl stop docker | |
modprobe overlay | |
echo '{"storage-driver": "overlay2"}' > /etc/docker/daemon.json | |
rm -rf /var/lib/docker/* | |
systemctl start docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment