Skip to content

Instantly share code, notes, and snippets.

@richardjortega
Last active August 17, 2017 07:06
Show Gist options
  • Save richardjortega/05109552f7367d57436439336ec1366b to your computer and use it in GitHub Desktop.
Save richardjortega/05109552f7367d57436439336ec1366b to your computer and use it in GitHub Desktop.
Setup a Raspberry Pi 3
# 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