... | ... | @@ -11,7 +11,7 @@ The only prerequisite for the installation of the Dependability Toolbox is to ha |
|
|
The Dependability Toolbox is available for download on [DockerHub](https://hub.docker.com/r/siavvasm/sdk4ed-dependability-toolbox/tags). In order to install it locally, you need to execute the following command on your terminal (assuming that Docker Engine is already installed on your system):
|
|
|
|
|
|
~~~
|
|
|
docker run -p 8080:8080 --name dependability-toolbox -it siavvasm/sdk4ed-dependability-toolbox:third bash ./startup.sh
|
|
|
docker run -p 8080:8080 --name dependability-toolbox -it siavvasm/sdk4ed-dependability-toolbox:third bash ./catalina.sh run
|
|
|
~~~
|
|
|
|
|
|
The above command will download the Docker Image of the latest version of the Dependability Toolbox locally and will generate a Docker Container named dependability-toolbox. It will also start the Tomcat Server that hosts the three services. Hence, after the execution of this command the Dependability Toolbox will be up and running and the three services will be invokable at port 8080 of your local machine. More specifically, the services will reside at the following end point:
|
... | ... | @@ -22,7 +22,7 @@ The above command will download the Docker Image of the latest version of the De |
|
|
|
|
|
In the above endpoint, you should replace the <your_local_host_ip> placeholder with the IP of your local machine on which the Dependability Toolbox docker container is running.
|
|
|
|
|
|
In case that you want to see the log files of the Tomcat Server that hosts the services of the Dependability Toolbox, you should replace the "./startup.sh" parameter of the above command with "./catalina.sh run". For your convenience, the full command that should be executed is presented below:
|
|
|
In case that you don't want to see the log files of the Tomcat Server that hosts the services of the Dependability Toolbox, you should replace the "./catakina.sh run" parameter of the above command with "./startup.sh". For your convenience, the full command that should be executed is presented below:
|
|
|
|
|
|
~~~
|
|
|
docker run -p 8080:8080 --name dependability-toolbox -it siavvasm/sdk4ed-dependability-toolbox:third bash ./catalina.sh run
|
... | ... | @@ -49,7 +49,7 @@ docker build -t sdk4ed-dependability-toolbox . |
|
|
This command will result in the creation of a Docker Image named "sdk4ed-dependability-toolbox". In order to create a Docker Container from this image you need to execute the following command:
|
|
|
|
|
|
~~~
|
|
|
docker run -p 8080:8080 --name dependability-toolbox -it sdk4ed-dependability-toolbox:third bash ./startup.sh
|
|
|
docker run -p 8080:8080 --name dependability-toolbox -it sdk4ed-dependability-toolbox:third bash ./catalina.sh run
|
|
|
~~~
|
|
|
|
|
|
This command is actually similar to the command that was demonstrated in the [Installation]() section of this README file. For more information on how you can handle the Dependability Toolbox docker container please have a look at the [Usage]() section of the present README file. |