Unable to customize provided DSC images #126
-
I am trying to use the Dataspace Connector repository provided images and then mounting on them to avoid having to clone the source code. I have looked at the deployment examples (https://github.com/International-Data-Spaces-Association/IDS-Deployment-Examples/tree/main/dataspace-connector), but none of them refer to the I have been able to define the local DAPS and I am successfully obtaining the tokens. How would I go about defining a TLS certificate? Environment 1 This is my
These are the logs I am getting if I do not mention the TLS. It takes the pre-defined
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Environment 2 This is my docker-compose.yml:
These are the logs I am getting with the setup above:
|
Beta Was this translation helpful? Give feedback.
-
Hi @aitorce You can override all application.properties values by setting them in your compose file under environment. Have a look here for the naming convention: https://hughesadam87.medium.com/how-to-override-spring-properties-with-env-vars-82ee1db2ae78 |
Beta Was this translation helpful? Give feedback.
Hi @aitorce
You have used self-signed certificates, thus you need to add them to the truststore, which is different from the keystore. The truststore is defined in config.json see
DataspaceConnector/src/main/resources/conf/config.json
Line 53 in f854480
DataspaceConnector/src/main/resources/application.properties
Line 82 in f854480
You can override all application.properties values by setting them in your compose file under environment. Have a look here for the naming convention: https://hughesadam87.medium.com/how-to-override-spring-prope…