During CloudFleet development, we had some problems in finding a consistent way to install Docker in Debian Jessie on ARM (Raspberry Pi 2). Debian moved us around between mirrors a bit and then eventually settled on Docker 1.7.1 which doesn’t work on ARM (Socket operation on non-socket
). Luckily, we found a nice Docker .deb package that works on ARM thanks to the Hypriot community (check the link for the latest Docker version). To use it, simply do:
wget http://downloads.hypriot.com/docker-hypriot_1.8.2-1_armhf.deb dpkg -i docker-hypriot_1.8.2-1_armhf.deb
Or if you use Ansible, use this snippet: Continue reading A no fuss Docker install on Rapberry Pi 2