Forked from calebbrewer/Setting up Docker Machine on Raspberry PI.md
Created
March 25, 2018 04:33
-
-
Save jmshal/a9259f542d498cc2a96d8bcc73e1e373 to your computer and use it in GitHub Desktop.
Revisions
-
calebbrewer renamed this gist
Aug 10, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
calebbrewer created this gist
Aug 10, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #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`