docker-bits/lsio/boinc/docker-compose.yaml

34 lines
1.1 KiB
YAML
Raw Normal View History

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