You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a Raspberry Pi Zero W, when pulling/downloading the latest magic-cards image layers via the docker run step in the README, it eventually fails with the error:
ISSUE:
On a Raspberry Pi Zero W, when pulling/downloading the latest magic-cards image layers via the
docker run
step in the README, it eventually fails with the error:CAUSE
Docker, by default, runs 3 simultaneous network connections when pulling down docker image layers, which overwhelms the Zero W.
SOLUTION:
Set the
max-concurrent-downloads
parameter, as described here: https://forums.docker.com/t/tls-handshake-timeout-pulling-from-docker-hub-on-a-raspberry-pi-1-on-docker-17-03/53614/2It can also be done when starting the docker daemon by stopping the daemon, then starting manually with:
dockerd --max-concurrent-downloads 1
Once the
docker pull
is complete, you can relaunch the daemon with the default of 3 connections.Might be worth adding an entry in the README to reflect this, as I suspect it would occur for all/most pi zeros.
The text was updated successfully, but these errors were encountered: