Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 520 Bytes

docker_install.md

File metadata and controls

14 lines (12 loc) · 520 Bytes

docker

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
sudo service docker restart
 
sudo groupadd docker          
sudo usermod -aG docker $USER 
                              
sudo systemctl enable docker