Skip to content

Instantly share code, notes, and snippets.

@weibeld
Created August 3, 2018 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weibeld/21fb18497eb78104aa4ef83b0fd27081 to your computer and use it in GitHub Desktop.
Save weibeld/21fb18497eb78104aa4ef83b0fd27081 to your computer and use it in GitHub Desktop.
Install Docker on AWS EC2 instance
#!/bin/bash
# Install Docker
apt-get update
apt-get install -y docker.io
# Add user 'ubuntu' to group 'docker'
usermod -aG docker ubuntu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment