marco
marco

Reputation: 3242

Docker plugin in IntelliJ Idea "Can't locate certificate files under ..."

I have a remote docker instance running on port 2376 as described in the Docker documentation and I can successfully connect to it via console with the command

docker --tlsverify --tlscacert=vm-ca.pem \
       --tlscert=vm-client-cert.pem \
       --tlskey=vm-client-key.pem \
       -H=10.38.105.34:2376 ps

Now I'm trying to use IntelliJ Idea Ultimate 2020.2 to connect, but I cannot use the TLS connection because of the error

Can't locate certificate files under C:\Users\marco\certs

Inside that folder there are the certificates used in the successfully previous command.
What am I missing ?

enter image description here

Upvotes: 1

Views: 802

Answers (1)

marco
marco

Reputation: 3242

The certs have to be named ca.pem, cert.pem, key.pem, no other name works.

Upvotes: 2

Related Questions