#Setting up Docker Machine on Raspberry PI
- 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.)
- Change the OS's ID so Docker Machine won't throw errors. sudo nano /etc/os-releaseand change the line that saysID=raspbiantoID=debian
- 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