This message was deleted.
# help
s
This message was deleted.
l
Haven’t used a PCF environment before.
JAVA_OPTS
is used to configure the java runtime rather than the wiremock cli. In PCF is there somewhere where you have specified the command to execute ? For example, running standalone you would normally run:
Copy code
$ java -jar wiremock-jre8-standalone-2.35.0.jar
To pass command line arguments to that you would just append them to the end:
Copy code
$ java -jar wiremock-jre8-standalone-2.35.0.jar --help
Or in your case:
Copy code
$ java -jar wiremock-jre8-standalone-2.35.0.jar --no-request-journal
👍 1
o
Exactly. JAVA_OPTS is a normal pattern for Docker images but it's really processed outside of this environment. My last time with PCF was 8 years ago, but I doubt there is ina specifics there
m
Thanks a lot for the explanation. Will try to pass it as you suggested.