Last active
May 8, 2017 11:47
-
-
Save weblogix/ea75da61623f24735b56cc121d32ed71 to your computer and use it in GitHub Desktop.
Docker on Ubuntu 17.04
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
#https://askubuntu.com/questions/909691/how-to-install-docker-on-ubuntu-17-04 | |
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
sudo apt-add-repository 'deb https://apt.dockerproject.org/repo ubuntu-zesty testing' | |
apt-get update | |
apt-cache policy docker-engine | |
apt-get install docker-engine | |
# Install Docker-compose | |
sudo apt install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment