holomekc/wiremock-gui
Wiremock with gui
10M+
Extends WireMock with a graphical user interface
The gui is part of the Wiremock admin interface. Therefore, just open the following URL:
<Wiremock baseUrl>/__admin/webapp
Custom Handlebars helpers
Name | Parameter | Description |
---|---|---|
JWT | algo | Signing algorithm. Check jsonwebtoken for SignatureAlgorithm. E.g. RS256 |
key | Base64 encoded key to use. Kind of key depends on used algo | |
claims | a json string which describes the claims to use. Must not be null in case no payload is defined | |
payload | a json string which contains the content of the jwt. Must not be null in case no claims are defined | |
header | a json string which contains the header to use |
Wiremock parameters can be passed via the environment variable WIREMOCK_OPTIONS. The values need to be of the following form:
--<param>,--<param>
A short example of a compose file
version: "3"
services:
wiremock:
image: "holomekc/wiremock-gui:latest"
container_name: my_wiremock
ports:
# This is just an example of a port mapping
- "8088:8089"
- "8084:8088"
environment:
WIREMOCK_OPTIONS: "--port=8089,--https-port=8088,--max-request-journal=1000,--local-response-templating,--root-dir=/home/wiremock/storage"
docker pull holomekc/wiremock-gui