![JAR search and dependency download from the Maven repository](/logo.png)
com.playtika.testcontainer.common.spring.DockerNotPresentFailureAnalyser Maven / Gradle / Ivy
The newest version!
package com.playtika.testcontainer.common.spring;
import org.springframework.boot.diagnostics.AbstractFailureAnalyzer;
import org.springframework.boot.diagnostics.FailureAnalysis;
public class DockerNotPresentFailureAnalyser extends AbstractFailureAnalyzer {
public static final String description = "No docker daemon available. Forgot to install/start docker?";
public static final String action = "Follow the guide: https://docs.docker.com/get-docker/";
@Override
protected FailureAnalysis analyze(Throwable rootFailure, DockerNotPresentException cause) {
return new FailureAnalysis(description, action, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy