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 build script (./create_and_init_kop.sh ), two scripts are generated based on settings.custom configuration filesfile

 

    run_kop.sh 

Script to start the Kiuwan docker container and make KOP fully available and accessible to users.

 

    run_init_kop.sh 

Script to initilize the Kiuwan docker container (i.e. resetting completely the KOP installation to factory defaults) without to create a new image. This script will remove any existing data of KOP installation (for example, all the database contents will be deleted).

 

IMPORTANT:

  • These scripts are based on settings.custom values at the momment of building the docker image.
  • If you later change settings.custom file, the new configuration values will not be applied until a new image is built (and new scripts will be generated)

 

 

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

     docker stop <my_container_name>

 

 

...