Skip to content

Instantly share code, notes, and snippets.

@mikesprague
Created March 18, 2018 13:10
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 mikesprague/0128dab8f9c937b54f9d9b7dfeca5994 to your computer and use it in GitHub Desktop.
Save mikesprague/0128dab8f9c937b54f9d9b7dfeca5994 to your computer and use it in GitHub Desktop.
Install and configure Docker for the Raspberry Pi
# get/start the offical docker installer
curl -sSL https://get.docker.com | sh
# set docker to auto-start
sudo systemctl enable docker
# start the docker daemon
sudo systemctl start docker
# enable docker client
sudo usermod -aG docker pi
# note to user
echo "If you are connected via SSH, please disonnect and reconnect now"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment