Created
September 5, 2016 10:07
-
-
Save loretoparisi/61f8ed0e8aa77bcb6bcb0a351e527df8 to your computer and use it in GitHub Desktop.
How to install Docker on Ubuntu
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
#!/usr/bin/env bash | |
# This script install Docker on Ubuntu >= 14.04 LTS | |
# | |
# This script must be run as root: | |
# sudo sh install_docker.sh | |
# | |
sudo apt-get -y install docker.io | |
sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker | |
sudo sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can then verify your docker installation running a machine like this privoxy