forked from lukasheinrich/folding-at-home-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mario Lassnig
committed
Mar 20, 2020
1 parent
dbef3c0
commit 09978a3
Showing
3 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM nvidia/opencl:runtime-ubuntu18.04 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get -y update | ||
RUN apt-get -y install ocl-icd-opencl-dev | ||
|
||
ADD https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v7.5/fahclient_7.5.1_amd64.deb /tmp | ||
RUN dpkg -i /tmp/fahclient_7.5.1_amd64.deb || exit 0 | ||
RUN rm /tmp/fahclient_7.5.1_amd64.deb | ||
|
||
WORKDIR /root | ||
VOLUME /root | ||
|
||
CMD FAHClient --user=CERN --team=38188 --gpu=true --smp=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
# Folding@home Docker images | ||
|
||
Docker images for [Folding@home](https://foldingathome.org/) | ||
Docker images for [Folding@home](https://foldingathome.org/) with GPU support | ||
|
||
[![Docker Pulls](https://img.shields.io/docker/pulls/lukasheinrich/folding)](https://hub.docker.com/r/lukasheinrich/folding) | ||
[![Docker Image Size (tag)](https://img.shields.io/docker/image-size/lukasheinrich/folding/simple)](https://hub.docker.com/r/lukasheinrich/folding/tags?name=simple) | ||
[![Docker Image Size (tag)](https://img.shields.io/docker/image-size/lukasheinrich/folding/simple)](https://hub.docker.com/r/lukasheinrich/folding/tags?name=latest) | ||
|
||
## Build image | ||
|
||
``` | ||
docker build -t lukasheinrich/folding:simple . -f simple/Dockerfile | ||
docker build -t lukasheinrich/folding:latest . -f Dockerfile | ||
``` | ||
|
||
## Usage | ||
|
||
Run via: | ||
|
||
``` | ||
docker run lukasheinrich/folding:simple | ||
docker run lukasheinrich/folding:latest | ||
``` |
This file was deleted.
Oops, something went wrong.