Dockerized client for Folding@Home.
Full Dockerfile:
FROM ubuntu:18.04
ARG DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get install -y wget && \
wget -q https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v7.5/latest.tar.bz2 -O /tmp/fah_latest.tar.bz2 && \
tar xvf /tmp/fah_latest.tar.bz2 --strip 1 -C /usr/local/bin
EXPOSE 7396
ENTRYPOINT ["/usr/local/bin/FAHClient", "--web-allow=0/0:7396", "--allow=0/0:7396"]
To run:
docker run -p 7396:7396 covperc/fah:7.5.1 --gpu=false --smp=true --user=your_name --passkey=your_password --team=241445
More information: https://www.percona.com/blog/2020/03/20/covid-19-one-way-to-take-action/.
Content type
Image
Digest
Size
57.7 MB
Last updated
over 6 years ago
docker pull covperc/fah:7.5.1