Boinc
[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.
Pulls:
1.1M
Stars:
37
User:
linuxserver
Created:
Mar 16, 2020
Updated:
4 days ago
Status:
active
Type
Container
Platform
linux
Image
linuxserver/boinc:latest
Ports
8080:8080/tcp
8181:8181/tcp
/config : /volume1/docker/boinc/config
unless-stopped
Env Vars
PUID=1024
PGID=100
TZ=Europe/Amsterdam
PASSWORD=''
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select the app you wish to deploy, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me
Via Docker Run
docker run -d \
-p 8080:8080/tcp \
-p 8181:8181/tcp \
-e PUID=${PUID} \
-e PGID=${PGID} \
-e TZ=${TZ} \
-e PASSWORD=${PASSWORD} \
-v /volume1/docker/boinc/config:/config \
--restart=unless-stopped \
linuxserver/boinc:latest
Via Docker Compose
Save this file as docker-compose.yml
and run docker-compose up -d
Use this only as a guide.
version: '3.8'
services:
boinc:
image: linuxserver/boinc:latest
ports:
- 8080:8080:tcp
- 8181:8181:tcp
environment:
PUID: ''
PGID: ''
TZ: ''
PASSWORD: ''
volumes:
- /volume1/docker/boinc/config:/config
Alternative Methods
For more installation options, see the Documentation in the GitHub repo