Created
November 13, 2019 05:35
-
-
Save aalonzolu/22edda4ad37da01c2feebc749df854a4 to your computer and use it in GitHub Desktop.
Install Docker in ubuntu 19.10
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
wget "https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/amd64/containerd.io_1.2.6-3_amd64.deb" | |
wget "https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/amd64/docker-ce-cli_19.03.3~3-0~ubuntu-disco_amd64.deb" | |
wget "https://download.docker.com/linux/ubuntu/dists/disco/pool/stable/amd64/docker-ce_19.03.3~3-0~ubuntu-disco_amd64.deb" | |
sudo dpkg -i "containerd.io_1.2.6-3_amd64.deb" | |
sudo dpkg -i "docker-ce-cli_19.03.3~3-0~ubuntu-disco_amd64.deb" | |
sudo dpkg -i "docker-ce_19.03.3~3-0~ubuntu-disco_amd64.deb" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment