Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
Next »
Install On AWS
# Docker Community Edition package
sudo amazon-linux-extras install docker -y
# Start the Docker service
sudo systemctl start docker
# For Auth: ec2-user
sudo setfacl -m user:ec2-user:rw /var/run/docker.sock
# Add the ec2-user to the docker group so you can execute Docker commands without using sudo.
sudo usermod -a -G docker ec2-user
# docker list
docker ps -a
# Automatically Start the Docker service when instance start
sudo systemctl enable docker
# Log out and log back in again
Rhel 설치
Docker 설치 Path 변경