Set up docker on Raspberry Pi
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
# 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