Created
December 9, 2019 20:53
-
-
Save init90/e02589cc7b9d983db00e79596f92ed40 to your computer and use it in GitHub Desktop.
Install Docksal on Ubuntu 19.10
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
Ubuntu 19.10 don't have official Docker support so should add it manually: | |
Add docker repository: | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
disco \ | |
stable" | |
Update packages: | |
sudo apt-get update | |
Install Docker: | |
sudo apt-get install docker.io | |
After steps above Docksal can be installed as usual. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment