org.testcontainers.dockerclient.TransportConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testcontainers Show documentation
Show all versions of testcontainers Show documentation
Isolated container management for Java code testing
package org.testcontainers.dockerclient;
import com.github.dockerjava.transport.SSLConfig;
import lombok.Builder;
import lombok.Value;
import org.jetbrains.annotations.Nullable;
import java.net.URI;
@Builder
@Value
public class TransportConfig {
URI dockerHost;
@Nullable
SSLConfig sslConfig;
}