Install Docker in ubuntu

1. sudo apt-get update

2.
sudo apt-get install \
apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
3. 
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

4.
sudo apt-key fingerprint 0EBFCD88
5.
sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

Comments

Popular posts from this blog

Set up Django with apache

JWT auth is not working on apache server