Last active
August 17, 2017 07:06
-
-
Save richardjortega/05109552f7367d57436439336ec1366b to your computer and use it in GitHub Desktop.
Setup a Raspberry Pi 3
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
# Run using: | |
# $ curl url/path/to/this/gist | sh | |
# Tooling | |
sudo apt-get update | |
sudo apt-get install -y vim git | |
# Install docker | |
curl -sSL https://get.docker.com | sh | |
sudo usermod -aG docker pi | |
# test docker | |
docker --version | |
# Install pip | |
wget https://bootstrap.pypa.io/get-pip.py | |
sudo python get-pip.py | |
# Install docker-compose | |
sudo pip install docker-compose | |
# test docker-compose compose | |
docker-compose --version | |
# Create a Code folder | |
$(cd ~/ && mkdir Code) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment