Last active
July 27, 2020 01:42
-
-
Save fnovoac/4e268baa10ec70e295c1707eea511fc8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Install Docker | |
curl -sSL https://get.docker.com | sh | |
# Add permission to Pi User (or whatever user you are using) to run Docker Commands | |
sudo usermod -aG docker pi | |
# Install proper dependencies | |
sudo apt-get install -y libffi-dev libssl-dev | |
sudo apt-get install -y python3 python3-pip | |
sudo apt-get remove python-configparser | |
# Install Docker Compose | |
sudo pip3 -v install docker-compose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment