How to install Docker on Amazon linux 2023? – Docker

by
Ali Hasan
amazon-ec2 amazon-linux-2023 amazon-linux-extras boot2docker docker-engine

Quick Fix: Utilize the command yum install -y docker to install Docker on Amazon Linux 2023.

The Problem:

How to install the Docker Engine on Amazon Linux 2023 using an alternative method to the deprecated ‘amazon-linux-extras’ repository?

The Solutions:

Solution 1: Install Docker via Amazon Linux Extra

You can install Docker on Amazon Linux 2023 using the Amazon Linux Extras repository. Run the following command to install Docker:

sudo yum install -y docker

Once the installation is complete, you can start the Docker service using the following command:

sudo systemctl start docker

Solution 2: Using dnf package manager

Since Amazon Linux 2023 is based on Fedora, you can use the dnf package manager to install Docker. Dnf is the next-generation yum, and it’s the recommended way to install packages on Amazon Linux 2023. To install Docker using dnf, run the following command:

“`
sudo dnf install -y docker
“`

Q&A

How to install Docker on Amazon linux 2023?

yum install -y docker

How to install Docker on Amazon linux 2023?

dnf install -y docker

Video Explanation:

The following video, titled "How to Install Docker on an AWS EC2 Instance | Step by step lab ...", provides additional insights and in-depth exploration related to the topics discussed in this post.

Play video

In this video, we'll show you step-by-step how to install Docker on an Amazon Linux EC2 instance. Docker is a popular platform for building, ...