Jannik 2020-06-09 16:20:11 +02:00
parent 756f502333
commit c6f7139252
1 changed files with 4 additions and 2 deletions

@ -30,7 +30,9 @@ 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-tcor-folder}:/tcor -p 8080:8080 tcor`. For the docker image to work properly you need to copy a java keystore into the tcor folder (right besides the config.xml file). Also make sure the file is named "cacerts".
you can run tcor via `docker run -v {path-to-the-tcor-folder}:/tcor -p 8080:8080 tcor`. You can also use the tcor docker image from dockerhub, see https://hub.docker.com/r/mosadxyz/tcor.
For the docker image to work properly you need to copy a java keystore into the tcor folder (right besides the config.xml file). Also make sure the file is named "cacerts".
#### Docker Compose
@ -38,7 +40,7 @@ you can run tcor via `docker run -v {path-to-the-tcor-folder}:/tcor -p 8080:8080
version: "3"
services:
tcor:
image: tcor:latest
image: mosadxyz/tcor:latest
ports:
- 8080:8080
volumes: