Adding README.md.

This commit is contained in:
Alexey Skobkin 2020-03-30 14:30:20 +03:00
parent c19cba1de8
commit b0316ada7b
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 22 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# Docker Compose config collection
## How to set up?
Basically you need to choose which service you want to run and then
create needed `.env` files from `.end.dist` template.
```shell
# Choose a service
cd folding-at-home
# Copy template
cp .env.dist .env
# edit the config to your preference
nano -w .env
# Create and run containers
docker-compose up -d
# Optional: check the logs
docker-compose logs -f
```
Some services may require additional configuration. Check for additional `README.md` files
or comments in the `docker-compose.yml` files or `.env.dist` templates.