Last active
November 27, 2019 19:23
-
-
Save amcginlay/a48251bd828d4a0b4641585e24679a92 to your computer and use it in GitHub Desktop.
Install docker on an Ubuntu instance
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
# Ubuntu ONLY! Amazon Linux instructions here: | |
# (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html#install_docker) | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sh get-docker.sh | |
sudo usermod -a -G docker ubuntu | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment