Docker on raspberry Pi 2: failed to reach registry endpoint

I installed a docker on my raspberry Pi 2 and I want to pull out some images. But when I try to pull with docker pull nginx , I get Could not reach any registry endpoint . My network connection is fine and even docker search nginx echos all the images. I installed docker from the raspbian repository with sudo apt-get install docker.io , so this is an older version. I could not install a newer version. The docker version is 1.3.3.

Also asked: https://raspberrypi.stackexchange.com/questions/51029/docker-on-raspberry-pi-2-could-not-reach-any-registry-endpoint

+5
source share
2 answers

As @ jarvis11 said, Docker has stopped supporting client versions below 1.5. At the same time, the current version available for raspbian jessie is 1.3, so you have to install from the source code or from one of the binaries.

Basically, step 4 is here:

https://github.com/umiddelb/armhf/wiki/Get-Docker-up-and-running-on-the-RaspberryPi-(ARMv6)-in-four-steps-(Wheezy)

+8
source

Docker no longer supports client versions below 1.5, so make sure you have client v1.5 and higher.

The Docker engine cannot connect to the registry. I ran into these problems a year ago due to the load on the docker hub. ( https://status.docker.com/ ) Now the public registry should work fine.

+1
source

All Articles