Jannik 2020-06-08 17:29:10 +02:00
parent 1c52bf4084
commit 1b291f1e52
1 changed files with 12 additions and 1 deletions

13
Home.md

@ -30,7 +30,18 @@ Here is an example of the config.xml:
### Docker
To build tcor as docker image, execute `docker build -t tcor:latest .` If the build was successfull,
you can run tcor via `docker run -v {path-to-the-settings-file}:/tcor -p 8080:8080 tcor`.
you can run tcor via `docker run -v {path-to-the-tcor-folder}:/tcor -p 8080:8080 tcor`.
``` yml
version: "3"
services:
tcor:
image: tcor:latest
ports:
- 8080:8080
volumes:
- {path-to-the-tcor-folder}:/tcor
```
### Libraries
* jsoup: https://jsoup.org/