This message was deleted.
# help
s
This message was deleted.
a
Assuming you’re using the default WireMock docker setup from here
Copy code
docker run -it --rm \
  -p 8080:8080 \
  --name wiremock \
  wiremock/wiremock:2.35.0
You can just modify that
-p
value to a new port
Copy code
docker run -it --rm \
  -p 8089:8089 \
  --name wiremock \
  wiremock/wiremock:2.35.0
s
I am not, I am building a new image out of standard image using a dockerfile, something like this:
And then deploy it on kubernetes as a sidecar to my application container.
a
How does your docker container start WireMock?
s
I do not provide any explicit command, so I am assuming that must be there in the base dockerfile ?