You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB
YAML

# [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.
---
version: "2.1"
services:
boinc:
image: ghcr.io/linuxserver/boinc
container_name: boinc
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Optionally set a password for the gui.
- PASSWORD= # optional
volumes:
# Where BOINC should store its database and config.
- ${BASEDIR:-/volume1/docker}/boinc/config:/config
ports:
# Boinc desktop gui.
- 8080:8080
# Boinc desktop gui HTTPS.
- 8181:8181
devices:
# Only needed if you want to use your Intel GPU (vaapi).
- /dev/dri:/dev/dri # optional
restart: unless-stopped