mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
19 lines
931 B
Bash
19 lines
931 B
Bash
# [BOINC](https://boinc.berkeley.edu/) is a platform for high-throughput
|
|
# computing on a large scale (thousands or millions of computers). It can be
|
|
# used for volunteer computing (using consumer devices) or grid computing (using
|
|
# organizational resources). It supports virtualized, parallel, and GPU-based
|
|
# applications.
|
|
|
|
source ./.env
|
|
docker run -d \
|
|
--name=boinc \
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
-e PASSWORD= `# optional` `# Optionally set a password for the gui.` \
|
|
-p 8080:8080 `# Boinc desktop gui.` \
|
|
-v ${BASEDIR:-/volume1/docker}/boinc/config:/config `# Where BOINC should store its database and config.` \
|
|
--device /dev/dri:/dev/dri `# optional` `# Only needed if you want to use your Intel GPU (vaapi).` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/boinc
|