Docker images for GraphWalker CLI.
10K+
Docker images for GraphWalker CLI.
Dockerfile linksGraphWalker is an open source Model-Based testing tool for test automation. It's designed to make it easy to design your tests using graphs.
The GraphWalker command line interface is a tool for working with graphs.
The graphwalker-cli:latest tag will always point the latest release (which is, at the time of this writing, graphwalker-cli:4.3.2).
Up to the graphwalker-cli:4.2.0 tag all tags had installed OpenJDK 8 (because before version 4.3.0 the latest version of Java supported by GraphWalker was Java 8).
Beginning with the graphwalker-cli:4.3.0 tag all tags will have installed OpenJDK 11.
This image creates a script facilitating running GraphWalker's command line on a linux machine.
Dockerfile in your projectFROM robert96/graphwalker-cli:latest
CMD gw online -s RESTFUL
Then, run the commands to build and run the Docker image:
$ docker build -t my-graphwalker .
$ docker run --name my-running-graphwalker -p 8887:8887 my-graphwalker
DockerfileStart the GraphWalker REST service on a docker image:
$ docker run -it -p 8887:8887 graphwalker-cli:latest gw online -s RESTFUL
Visit http://localhost:8887/graphwalker/getStatistics and you will see It works!
This project is licensed under the MIT License.
Content type
Image
Digest
sha256:d7c48a3ab…
Size
500.7 MB
Last updated
over 3 years ago
docker pull robert96/graphwalker-cli