Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

install docker ubuntu

# To install docker in ubuntu, run the following in your terminal:

sudo apt-get update
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt install docker-ce
Source by docs.docker.com #
 
PREVIOUS NEXT
Tagged: #install #docker #ubuntu
ADD COMMENT
Topic
Name
1+5 =