Last active
May 23, 2017 10:30
-
-
Save drola/478d129cbdb36bba798ac0d12daa0425 to your computer and use it in GitHub Desktop.
Upgrades docker.io package with docker-ce package from Docker repository
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/bash | |
| sudo apt-get remove --yes docker.io | |
| sudo /bin/bash -c 'echo "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty edge" > /etc/apt/sources.list.d/docker.list' | |
| sudo apt update | |
| sudo apt install --yes docker-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment