javax.ws.rs.core.Response$Status$Family javax.ws.rs.core.Response$Status$Family.familyOf(int)
I am geting above exception while reading log of docker container using below config
@Bean
public DockerClient dockerClient() {
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
.withDockerHost("unix:///var/run/docker.sock")
.build();
return DockerClientBuilder.getInstance(config).build();
}
}`
`
pom.xml
<dependencies>
<!-- Spring Boot Starter Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Spring Boot Starter WebFlux -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<!-- Docker Java Library -->
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java</artifactId>
<version>3.2.12</version>
</dependency>
</dependencies>
Wht is the above things not working, pls help guys.
I tried all permutaions that are possible around it, used mutiple AI tools to debug, but not getting.
New contributor
Pintu Kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1