Remco Overdevest
Remco Overdevest
+1 I want to use the same dockerfile for multiple instance on the same host. I have an nginx ingress in front of the hapi fhir instances which forwards the...
@jamesagnew tnx for your reply. How to actually set this context?
So, I took a different approach and now use a spring-boot war with embedded tomcat to run the application in a docker container. This way you can use the following...
I use a multi stage docker build in my CI. ``` ....stuff before RUN ./mvnw clean package -Pboot COPY --from=builder target/ROOT.war / CMD ["java", "-jar", "/ROOT.war"] ``` So the name...
Well the idea is still the same. You can replace the entire dockerfile of this project for your own. It's quite different in my case now as I removed the...
Looks like you have an issue with spring dependencies. Try to run ```mvn dependency:tree``` and investigate what's wrong.
doesn't work for me either. Using `NL` as country code
https://stackoverflow.com/a/61198852 this solution worked for me
@armaesiea try this solution https://stackoverflow.com/a/61198852 change line in `/etc/ssl/openssl.cnf` from ``` CipherString = DEFAULT@SECLEVEL=2 ``` to ``` #CipherString = DEFAULT@SECLEVEL=2 ```