Please enable JavaScript to view this site.

Navigation: Installation > The Basics

Install on Docker

Scroll Prev Top Next More

 

Linkar Docker version official image is available for download on Kosday's DockerHub . docker pull kosday/linkar-suite:2.3.7 https://hub.docker.com/r/kosday/linkar-suite

 

This image is not functional by itself. In order to use this image you must have a Linkar DOCKER License. These licenses must be requested through the sales department (sales@kosday.com). 

 

You can run the container, and you will be able to make all the configuration settings you want, create Profiles and EntryPoint, etc, but the EntryPoint will not be able to connect to the Databases, until the license is activated. Once the license is obtained, it can be activated from the configuration menus.

 

 

Once the image is downloaded, use the following command to run the container:

 

 docker run -d 

-v <yourlocalpath>:/etc/KOSDAY/LinkarSuite 

   -v <yourlocalpath>:/var/KOSDAY/LinkarSuite 

   -p <external_ip_port>:<internal_ip_port> 

   linkar-suite:2.3.7

 

 

For instance:

docker run -d 

 -v /mnt/c/CfgLinkarDocker:/etc/KOSDAY/LinkarSuite 

    -v /var/KOSDAY/LinkarSuite:/var/KOSDAY/LinkarSuite 

    -p 30201:11201 

     linkar-suite:2.3.7

 

-d

 

Run container in background and print container ID

 

-v <yourlocalpath>:/etc/KOSDAY/LinkarSuite

 

example:

-v /mnt/c/CfgLinkarDocker:/etc/KOSDAY/LinkarSuite

Recommended

 

You can link the Linkar configuration directory (/etc/KOSDAY/LinkarSuite) to an external directory on the host computer. It is recommended to use this argument, in order to have the Linkar configuration in a directory outside the container. This way all configuration changes made (license activation, EntryPoint creation, ...) will remain permanently in the external directory.  Otherwise, when the container is stopped, all configuration changes made will be lost. If the host directory does not exist or exists but is empty, all initial configuration files will be created. If the configuration files exist, they are not overwritten.

-v <yourlocalpath>:/var/KOSDAY/LinkarSuite

 

example:

-v /var/KOSDAY/LinkarSuite:/var/KOSDAY/LinkarSuite

 

Recommended

You can bind the Linkar directory where the logs and statistics data are stored to an external directory on the host machine.

 

 

-p <external_ip_port>:<internal_ip_port>

 

example:

-p 30201:11201

 

 

In the example, this argument is redirecting the internal port of the container 11201 to the external port of the host computer 30201. This will allow you, from the host computer and using a web browser with the url http://localhost:30201, to access LinkarManager for Linkar configuration. Among other things, it will allow you to perform license activation.

linkar-suite:2.3.7

 

 

It's the docker image and its version