Last active
August 23, 2019 00:15
-
-
Save spro/9b83a586580a01b79b65c5513987a826 to your computer and use it in GitHub Desktop.
Installing Docker 18.09 on Amazon Linux 2 (As of August 22 2019)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | |
sudo yum install -y http://mirror.centos.org/centos/7/extras/x86_64/Packages/container-selinux-2.68-1.el7.noarch.rpm | |
sudo yum install -y docker-ce-18.09.5 containerd.io-1.2.2 | |
sudo usermod -a -G docker ec2-user | |
sudo systemctl start docker |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment