Boinc exited for hours after installing

Hey,
i’m stuck.
I installed boinc with

docker run -d \
  --name boinc \
  --net=host \
  --pid=host \
  -v /opt/appdata/boinc:/var/lib/boinc \
  -e BOINC_GUI_RPC_PASSWORD="123" \
  -e BOINC_CMD_LINE_OPTIONS="--allow_remote_gui_rpc" \
  boinc/client

if i type "docker ps -a
4f2b6a4cb99d boinc/client “start-boinc.sh” 2 hours ago Exited (1) 2 hours ago

the container is exited… dunno what i should do. cant find any answers in the internyet

Greetings

Hi :slight_smile:

what does: docker logs boinc
provide you? any errors?

Hello terpz,
thanks for ur answer. The command tells me:

pi@raspberrypi:~ $ docker logs boinc
standard_init_linux.go:211: exec user process caused “exec format error”
standard_init_linux.go:211: exec user process caused “exec format error”

Greeeetings :slight_smile:

Maybe i have to go for this:

https://hub.docker.com/r/bunchc/rpi-boinc/

If you look here: https://hub.docker.com/r/boinc/client/tags
you can see that the “latest” tag is “amd64” (docker defaults to latests if nothing defined)

but as you can see, there is also arm tags, so use “boinc/client:arm64v8”

instead :slight_smile:

edit: because raspberry uses arm and not amd64

Same problem here.
Pulled the arm64v8 version
startet it with:
docker run -d
–name boinc
–net=host
–pid=host
-v /opt/appdata/boinc:/var/lib/boinc
-e BOINC_GUI_RPC_PASSWORD=“123”
-e BOINC_CMD_LINE_OPTIONS="–allow_remote_gui_rpc"
boinc/client:arm64v8

typed:
docker status boinc
standard_init_linux.go:211: exec user process caused “exec format error”

maybe :arm32v7 ?

sorry but im unsure when to use what, i guess it depends on your raspberry version

It works!
Thanks a lot! It had to be the arm32v7 :slight_smile: THANKS!!!

1 Like