Sign inSign up

boris1993/boinc

By boris1993

Updated about 2 years ago

Self built BOINC client Docker image

Image
0

1.3K

boris1993/boinc repository overview

BOINC Client

A customized BOINC client Docker image.

Additional dependencies installed:

  • libgomp1 - SiDock@Home

Usage

  • Docker command
$ docker volume create boinc
$ docker run \
  --name boinc \
  --net=host \
  --restart always \
  -d \
  -v boinc:/var/lib/boinc \
  -e BOINC_GUI_RPC_PASSWORD=A_V3rY_s3cRET_p@ssW0rD \
  -e BOINC_CMD_LINE_OPTIONS=--allow_remote_gui_rpc \
  -e BOINC_REMOTE_HOST=0.0.0.0 \
  boris1993/boinc:latest
  • Docker compose
version: '3'

services:
  boinc:
    image: boris1993/boinc:latest
    container_name: boinc
    restart: always
    network_mode: host
    pid: host
    environment:
      BOINC_GUI_RPC_PASSWORD: A_V3rY_s3cRET_p@ssW0rD
      BOINC_CMD_LINE_OPTIONS: --allow_remote_gui_rpc
      BOINC_REMOTE_HOST: 0.0.0.0
    volumes:
      - boinc:/var/lib/boinc

volumes:
    boinc:

Tag summary

Content type

Image

Digest

sha256:50203f663

Size

45 MB

Last updated

about 2 years ago

docker pull boris1993/boinc