Skip to content

Capsule with dockerized front-end

Choose a tag to compare

@a66as a66as released this 10 Jul 13:36
· 14 commits to master since this release
7ceb1c8
How to Run The Front-end?
  • Clone the master branch or download the attached StateBasedTestCaseGeneration-v2.zip file
  • Install and open Docker Desktop (preferable version: 4.31.1), make sure that the engine is up and running.
  • Navigate to /StateBasedTestCaseGeneration/demo/
  • Open Terminal in /StateBasedTestCaseGeneration/demo/
  • now run the following commands in terminal
    • docker build -t capsule . (to build the image)
    • docker run -d -v my_src_volume:/src -v my_models_volume:/Models -v my_jarfile_lib_volume:/jarfile_lib -p 8080:8080 --name capsule_container capsule (to run the container)
    • docker logs -f capsule_container (to get logs of container)
  • The app is up and running navidate to http://localhost:8080/ in your browser
  • If you want to stop/start the app use docker stop/start capsule_container