Hi All , I am having a docker.compose.yml which I am using to run wiremock image on my local and to copy all my stub mappings. It is working fine on http with port 8080. Now , I have created a keystore.jks and I am trying to use that cert to run wiremock using https with port 8443 , but it keeps failing with MissingResourceException .
I have added entry in volumes:
• ./keystore.jks:/home/wiremock/keystore.jks
And my command is -
["--verbose", "--https-port", "8443", "--https-keystore", "/home/wiremock/keystore.jks", "--https-keystore-password","password"
I have checked that the password of keystore is correct and also location is correct as cert is in the same directory as my docker-compose.yml. I have also checked permissions on cert. Any ideas why am I getting this error ?