Title logo
linuxserver/boinc.

1,038,396 36 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/boinc
Build Time 23 Apr 2024 12:20:57
Base Image lsiobase/guacgui
Category Research
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 7.24.1 23 Apr 2024 at 12:20:56

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  boinc:
    image: linuxserver/boinc:7.24.1
    container_name: boinc
    restart: unless-stopped
    environment:
      - TZ # Specify a timezone to use EG Europe/London.
      - PUID # UID of user to take ownership of application/files
      - PGID # GID of user to take ownership of application/files
      - GUAC_USER # Username for the BOINC desktop gui. (Optional)
      - GUAC_PASS # Password's md5 hash for the BOINC desktop gui. (Optional)
    volumes:
      - /host/path/to/config:/config # Where BOINC should store its database and config.
    ports:
      - 8080:8080/tcp # Boinc desktop gui.
    devices:
      - /dev/dri:/dev/dri # Only needed if you want to use your Intel GPU (vaapi).

CLI

docker create \
  --name=boinc \
  -e TZ `# Specify a timezone to use EG Europe/London.` \
  -e PUID `# UID of user to take ownership of application/files` \
  -e PGID `# GID of user to take ownership of application/files` \
  -e GUAC_USER `# Username for the BOINC desktop gui. (Optional)` \
  -e GUAC_PASS `# Password's md5 hash for the BOINC desktop gui. (Optional)` \
  -v /host/path/to/config:/config `# Where BOINC should store its database and config.` \
  -p 8080:8080/tcp `# Boinc desktop gui.` \
  --device /dev/dri:/dev/dri `# Only needed if you want to use your Intel GPU (vaapi).` \
  --restart unless-stopped \
  linuxserver/boinc:7.24.1