Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tsubik/5b5e724830a2f5b6cb1a42a86e3342b6 to your computer and use it in GitHub Desktop.
Save tsubik/5b5e724830a2f5b6cb1a42a86e3342b6 to your computer and use it in GitHub Desktop.

#Setting up Docker Machine on Raspberry PI

  1. SSH into the pi and install docker with curl -sSL https://get.docker.com | sh (If we let Machine try to install the Docker daemon it will fail.)
  2. Change the OS's ID so Docker Machine won't throw errors. sudo nano /etc/os-release and change the line that says ID=raspbian to ID=debian
  3. From a new terminal window run docker-machine create --driver generic --generic-ip-address YOUR-PIS-IP --generic-ssh-key ~/.ssh/id_rsa --generic-ssh-user pi --engine-storage-driver overlay2 MACHINE-NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment