DockerTlsConfig

@Serializable
data class DockerTlsConfig(var enabled: Boolean = false, var tlsVerify: Boolean = true, var clientKeyPassword: String? = null, var keystorePath: String? = null, var keystorePassword: String? = null)

TLS configuration for the Docker connection

Constructors

Link copied to clipboard
constructor(enabled: Boolean = false, tlsVerify: Boolean = true, clientKeyPassword: String? = null, keystorePath: String? = null, keystorePassword: String? = null)

Properties

Link copied to clipboard

Password for the client key (if different from the keystore password)

Link copied to clipboard

Whether TLS is enabled or not

Link copied to clipboard

Password for the keystore

Link copied to clipboard

Path to the java PKCS12 keystore holding the client key, client cert, and CA cert

Link copied to clipboard

Whether to verify the server's certificate