Issue starting up docker image with FUSIONAUTH_APP_ADDITIONAL_JAVA_ARGS
-
When I add the following to my docker compose file:
- FUSIONAUTH_APP_ADDITIONAL_JAVA_ARGS="-Djavax.net.ssl.keyStore=/fusionauth/example.p12 -Djavax.net.ssl.keyStorePassword=****"
I see the following when starting up:
Error: Could not find or load main class "-Djavax.net.ssl.keyStore=.fusionauth.example.p12
This same environment configuration option was working for older versions of fusion auth (1.36.7). Is this no longer a valid configuration option?
-
Thanks for the question - if you remove the quotes from your args, that may resolve the issue.
- FUSIONAUTH_APP_ADDITIONAL_JAVA_ARGS=-Djavax.net.ssl.keyStore=/fusionauth/example.p12 -Djavax.net.ssl.keyStorePassword=****
Our documentation may need to be updated to address this
https://fusionauth.io/docs/v1/tech/admin-guide/securing#custom-keystore
Josh