Versions Compared

Key

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

...

     docker load --input kop_v12_saved_image.tar 

...

 

Step 4. Executing the Kiuwan Docker container

Info

After executing docker image building script (./create_and_init_kop.sh ), a script is created to execute the Kiuwan docker container.

 

The name on the script is based on the image name and tag you provided in settings.custom configuration file:

 

     run_$(KIUWAN_DOCKER_IMAGE)_$(KIUWAN_TAG_DOCKER_IMAGE).sh 

 

You can stop the Kiuwan container by issuing the following command:

     docker stop <my_container_name>

 

 

Step 4.1 Execution in debug mode (only sshd) 

Just in case you are running with problems while executing Kiuwan container, you can run it in debug mode.

...

Info

After the container is built, you can execute (run) the Kiuwan container in debug mode by issuing the following command:

 

     docker run --rm --name <my_container_name> \
                     -h <my_container_host_name> \
                     -v <server_host_mount_dir:container_mount_dir> \
                     -p <ssh_port_ext>:22  \
                     -d \
                     <image_name:version>


Step

...

5. Accessing Kiuwan On Premise

Info

Once Kiuwan On Premise container is running, you can access it from a browser in the following URL:

http://<$KIUWAN_HOST>:<$KIUWAN_PORT>/saas

where KIUWAN_HOST and KIUWAN_PORT match the values of those properties as configured in Dockerfile 

...