FruxePi icon indicating copy to clipboard operation
FruxePi copied to clipboard

Docker image build is failing step 8

Open bumbleio opened this issue 6 years ago • 6 comments

Looks like drogon.net is not serving wiringPI source code - please provide alternative location for code. Image build faile

Step 8/12 : RUN git clone git://git.drogon.net/wiringPi && cd wiringPi && ./build ---> Running in 7b27cafb4d1e Cloning into 'wiringPi'... fatal: unable to connect to git.drogon.net: git.drogon.net[0: 188.246.205.22]: errno=Connection refused git.drogon.net[1: 2a03:9800:10:7b::2]: errno=Cannot assign requested address

bumbleio avatar Jul 31 '19 14:07 bumbleio

Fixed by replacing the Dockerfile line 27 with

RUN git clone https://github.com/WiringPi/WiringPi.git && \

bumbleio avatar Jul 31 '19 15:07 bumbleio

Same here, how do i change the dockerfile line ?

rubinkingma avatar Aug 11 '19 19:08 rubinkingma

Check these directories:

  • /home/pi/FruxePi/docker/armv7
  • /home/pi/FruxePi/docker/armv6

(depending on which chip architecture your pi uses, Choose either the arm6 or arm7 directory. Then edit the file "dockerfile" contents or you can just edit the "dockerfile" file in both arm directories)

Find this line in the file and change it to the new code.

OLD: RUN git clone git://git.drogon.net/wiringPi && \

NEW: RUN git clone https://github.com/WiringPi/WiringPi.git &&\

But mine still gave an "Error! Unable to configure Docker Images." at this point. I'm stuck for now. Suspect it needs YAML installed.

mirage1usa avatar Sep 24 '19 06:09 mirage1usa

Check these directories:

  • /home/pi/FruxePi/docker/armv7
  • /home/pi/FruxePi/docker/armv6

(depending on which chip architecture your pi uses, Choose either the arm6 or arm7 directory. Then edit the file "dockerfile" contents or you can just edit the "dockerfile" file in both arm directories)

Find this line in the file and change it to the new code.

OLD: RUN git clone git://git.drogon.net/wiringPi && \

NEW: RUN git clone https://github.com/WiringPi/WiringPi.git &&\

But mine still gave an "Error! Unable to configure Docker Images." at this point. I'm stuck for now. Suspect it needs YAML installed.

I have the same problem when running the installation script, with my raspberry pi 3 B, with my raspberry pi zero w i cant even reach that step because i couldnt install docker. Please if you found a solution to the docker images error post it, im following this thread.

luckciano avatar Sep 24 '19 08:09 luckciano

I'm having the same issue, can't use the fruxe

LeoZanella avatar Jan 07 '20 13:01 LeoZanella

Without fixes here, try an earlier commit:

https://github.com/fruxefarms/FruxePi/tree/07fe41c897399c2cdc948feefd2d018d049c9a0f

dcaud avatar Apr 05 '20 17:04 dcaud