Digital Marketing

Install Docker on Amazon Linux 2

Update the installed packages and package cache on your instance.

sudo yum update -y
Install the most recent Docker Community Edition package.

sudo amazon-linux-extras install docker
Start the Docker service.

sudo service docker start
Add the ec2-user to the docker group so you can execute Docker commands without using sudo.

sudo usermod -a -G docker ec2-user
Log out and log back in again to pick up the new docker group permissions. You can accomplish this by closing your current SSH terminal window and reconnecting to your instance in a new one. Your new SSH session will have the appropriate docker group permissions.

Verify that the ec2-user can run Docker commands without sudo.

docker ps

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database