Skip to content

benkorichard/folding-at-home

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker container for running Folding@Home

Usage

docker run --rm -d --name fah -p7396:7396 benkorichard/folding-at-home:latest

By default it'll start the client as anonymous, with disabled gpu and full power.

You can edit these options by passing them as command:

docker run --rm -d --name fah -p7396:7396 benkorichard/folding-at-home:latest \
--user=<username> --team=<team_id> --gpu=false --smp=true --power=full

An example compose file:

---
version: '3.7'

services:
  folding-at-home:
    image: benkorichard/folding-at-home:latest
    ports:
      - 7396:7396
    command: --user=<username> --team=<team> --gpu=false --smp=true --power=full

The web console is available on port 7396.

Packages

No packages published

Languages

  • Dockerfile 100.0%