Hello, I am running wiremock from a docker contain...
# help
k
Hello, I am running wiremock from a docker container. And I need to write a custom transformer. How can I load my transformer in the docker container?
o
Hello. You can package the transformer as an extension, and then add it to the image as any other extension
t
Hi @Kelly Goedert here are the docs on writing and running extensions: https://wiremock.org/docs/extending-wiremock/ WireMock 3.0 makes it a bit easier - you can now put a service descriptor file under
META-INF
and then place your extension JAR in the classpath and it’ll be loaded automatically.
🙌 1