How to add client certificates to a Docker

0
Looking at the documentation of both the Mendix Docker buildback and the Mendix CloudFoundry buildpack, I only see a way to add certificate authorities. However, I require client certificates to be added. How do I do that?
asked
1 answers
1

Apparently there is a CLIENT_CERTIFICATES environment variable. Mendix support pointed me to this code snippet:

 

def get_client_certificates(version):
    config = {}
    client_certificates_json = os.getenv("CLIENT_CERTIFICATES", "[]")
...

 

answered