Skip to content

Instantly share code, notes, and snippets.

@ianfinch
Created January 12, 2020 20:18
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 ianfinch/5c47998c3c5407b3bdd3a398a0ec60e0 to your computer and use it in GitHub Desktop.
Save ianfinch/5c47998c3c5407b3bdd3a398a0ec60e0 to your computer and use it in GitHub Desktop.
Set up docker on Raspberry Pi
# Based on https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl
curl -sSL https://get.docker.com | sh
sudo usermod -aG docker $USER
# Reboot
docker run hello-world
sudo apt-get install libffi-dev libssl-dev
sudo apt-get install -y python python-pip
sudo apt-get remove python-configparser
sudo pip install docker-compose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment