An open API service indexing awesome lists of open source software.

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

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







```