Skip to content

Instantly share code, notes, and snippets.

  • Star 27 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save calebbrewer/c41cab61216d8845b59fcc51f36343a7 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
@famer
Copy link

famer commented Sep 14, 2018

Hello! thanks for this note, that saved me efforts and time)
could you please tell why --engine-storage-driver has to be set that way, and why default aufs failed to start?

@TZubiri
Copy link

TZubiri commented May 13, 2019

@famer

https://docs.docker.com/storage/storagedriver/select-storage-driver/

This page of the documentation provides the relevant information. It seems that overlay2 is simply the best overall storage driver, if I understand correctly this is used for volumes. If you skip this option, a default will be selected in the following list:
"btrfs,zfs,overlay2,aufs,overlay,devicemapper,vfs"
No clue why it failed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment