Skip to content

Instantly share code, notes, and snippets.

@jamesattard
Created February 6, 2018 13:24
Show Gist options
  • Save jamesattard/a32cde949a62423e01a918497c3d64ec to your computer and use it in GitHub Desktop.
Save jamesattard/a32cde949a62423e01a918497c3d64ec to your computer and use it in GitHub Desktop.
Installing Docker on Amazon Linux
#!/bin/bash
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# log out and log in to pickup the added group
# Also install some common sense stuff
sudo yum install -y git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment