Portainer Templates

Boinc

Research

[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/tcp8181:8181/tcp

Volumes

/config : /volume1/docker/boinc/config

Restart Policy unless-stopped Env Vars

PUID=1024PGID=100TZ=Europe/AmsterdamPASSWORD=''

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. 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 demo

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

Container Documentation