2021-04-21 00:55:42 +00:00
|
|
|
# [Folding@home](https://foldingathome.org/) is a distributed computing project
|
|
|
|
# for simulating protein dynamics, including the process of protein folding and
|
|
|
|
# the movements of proteins implicated in a variety of diseases. It brings
|
|
|
|
# together citizen scientists who volunteer to run simulations of protein
|
|
|
|
# dynamics on their personal computers. Insights from this data are helping
|
|
|
|
# scientists to better understand biology, and providing new opportunities for
|
|
|
|
# developing therapeutics.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=foldingathome \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 7396:7396 `# Folding@home web gui.` \
|
|
|
|
-p 36330:36330 `# optional` `# Optional port for connecting remotely via FAHControl app (no password).` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/foldingathome/config:/config `# Where Folding@home should store its database and config.` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/foldingathome
|