https://github.com/howtocodewell/folding-at-home
How To Code Well Folding@Home Team
https://github.com/howtocodewell/folding-at-home
cancer covid-19 covid-data covid19 distributed-computing distributed-systems docker docker-compose fah foldingathome howtocodewell
Last synced: about 2 months ago
JSON representation
How To Code Well Folding@Home Team
- Host: GitHub
- URL: https://github.com/howtocodewell/folding-at-home
- Owner: howToCodeWell
- Created: 2020-03-15T11:42:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-15T21:47:09.000Z (over 6 years ago)
- Last Synced: 2025-03-22T16:33:45.870Z (over 1 year ago)
- Topics: cancer, covid-19, covid-data, covid19, distributed-computing, distributed-systems, docker, docker-compose, fah, foldingathome, howtocodewell
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How To Code Well Folding@Home
How To Code Well Team [236997](https://stats.foldingathome.org/team/236997)
## Install
```bash
$ git clone https://github.com/howToCodeWell/folding-at-home
```
```bash
$ cp config.dist.xml config.xml
```
Adjust the variables in the config.xml
Build and run the Docker container
```bash
$ docker-compose up -d --build
```
Monitor the logs
```bash
$ docker-compose logs -f fah
```
## Stopping containers
```bash
$ docker-compose stop fah
```
## Uninstall
```bash
$ docker-compose down -v --rmi='all'
```
## Install manually without Docker compose
```bash
# Create volume for work units
$ docker volume create fahclient
# Run container
$ docker run -v fahclient:/var/lib/fahclient -v ${PWD}/config.xml:/etc/fahclient/config.xml --name=fah -d howtocodewell/folding-at-home
```
Monitor the logs
```bash
$ docker logs -f fah
```
## Configuration
A typical config file looks like this
```xml
```