From b0316ada7ba8101e3b0e704ee17040ff7fc4b6c2 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 30 Mar 2020 14:30:20 +0300 Subject: [PATCH] Adding README.md. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..32fc82b --- /dev/null +++ b/README.md @@ -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. \ No newline at end of file