To install Docker on an Amazon EC2 instance using the yum package manager, you can follow the steps below:

 

Connect to your EC2 instance using SSH.
Update the package index and upgrade installed packages by running the following command:

sudo yum update y

Install Docker’s dependencies by executing the following command:

sudo yum install -y yum-utils device-mapper-persistent-data lvm2

Configure the Docker repository by running the command:

sudo yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo

Install Docker by executing the following command:

sudo yum install -y docker-ce docker-ce-cli containerd.io

Start the Docker service using the command:

sudo systemctl start docker

Enable Docker to start on system boot:

sudo systemctl enable docker

Verify that Docker is installed correctly by running the following command:

docker –version

If Docker is installed properly, you should see the version information.

While installing docker if you faced any issue respond to this blog will try to solve!!

Thank you