Created
June 15, 2018 17:54
-
-
Save georgepaoli/4ccc347ff643bf0a5a2b06caa38ca1e3 to your computer and use it in GitHub Desktop.
Install Rancher in Ubuntu with Docker 17.03.2
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
# Download docker 17.03.2 for ubuntu 16.04.1 amd64 | |
sudo wget https://launchpad.net/ubuntu/+source/docker.io/17.03.2-0ubuntu1~16.04.1/+build/13757290/+files/docker.io_17.03.2-0ubuntu1~16.04.1_amd64.deb | |
# Install Docker | |
sudo dpkg -i ./docker.io_17.03.2-0ubuntu1~16.04.1_amd64.deb | |
# Install Rancher | |
sudo docker run -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment