Docker Installation Tutorial On Ubuntu
Docker_Installation On Ubuntu OS
Docker installation on AWS EC2
docker Container installation on AWS
Microservices
################### Steps ###################
update the packages index and install the dependencies necessary to add a new HTTPS repository :
sudo apt update
sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Import the repository’s GPG key using the following curl command: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add –
Add the Docker APT repository to your system: sudo add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable”
Install Docker: sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io
Verify Docker installation:
sudo systemctl status docker
sudo docker container run hello-world
ubuntu