Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The KGS tia® Webservice is based on the OSGi-Framework. Since version 2.2.2 the KGS tia® Webservice is available as a container.

Table of Contents

Snippet Summary

Code Block
docker login https://images.kgs-cloud.de/
docker pull images.kgs-cloud.de/tia-webservice/tia-webservice:<version>
docker run --name webservice -p 8080:8080 -v {YOUR HOST DIRECTORY MOUNT PATH}:/application/work -d images.docker.kgs-cloud.de/tia-webservice/tia-webservice:<version>

Step 1: Pull the Image

Code Block
docker pull images.kgs-cloud.de/tia-webservice/tia-webservice:<version>

...

Step 2: Start with mount options

It is necessary to mount a filesystem path into the container in order to persist the product (KGS Webservice) configuration. This procedure ensures that the configuration is not lost after a restart/redeploy of the container.

...