...
Code Block |
---|
docker run -p 8080:8080 -v data_volume:/temp/ -v <Folder>/repository.cfg:/application/config/repository.cfg -d docker.kgs-software.com/tia/core/cmis<product>:<Version> |
Example:
Code Block |
---|
docker run -p 8080:8080 -v data_volume:/temp/ -v C:/cmis/repository.cfg:/application/config/repository.cfg -d docker.kgs-software.com/tia/core/cmis:2.1.0 |
...
You can overwrite these with -e <key>=value
FAQ
Expand |
---|
title | I want to use ILM or SAPHTTP? |
---|
|
Both is available on Nexus |
Expand |
---|
title | Where do I store the metadata.xml? |
---|
|
In the example repository.cfg the files are stored in /temp/meta. Make sure you map these data in a volume so that multiple started images can access the same data |
Expand |
---|
title | Is respository.cfg shared? |
---|
|
In the example repository.cfg is shared when mutiple container use the same repository.cfg. Change one and restart container so that new repository.cfg works for both. |
Expand |
---|
title | Where is the tomcat? |
---|
|
Tomcat is now embedded and maintained by kgs. |
Expand |
---|
title | How do I update a container |
---|
|
Pull the new image sudo docker pull [docker_image] Find the ID of the running container sudo docker ps  Stop Container sudo docker stop [container_id] Remove Container sudo docker rm [container_id] Start Container docker run -p 8080:8080 -v data_volume:/temp/ -v <Folder>/repository.cfg:/application/config/repository.cfg -d docker.kgs-software.com/tia/core/cmis:<Version> |
Expand |
---|
title | Are there files or directories that need to be mapped in the container and need to be permanent with read/write access? |
---|
|
|