Last active
August 29, 2015 14:15
-
-
Save shichao-an/95de2daffb5cd85e1df8 to your computer and use it in GitHub Desktop.
Install docker without UFW on Ubuntu 14.04
This file contains hidden or 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 | |
[ -e /usr/lib/apt/methods/https ] || { | |
apt-get update | |
apt-get install apt-transport-https | |
} | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 | |
curl -sSL https://get.docker.com/ubuntu/ | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment