
com.palantir.docker.compose.execution.Docker Maven / Gradle / Ivy
/*
* (c) Copyright 2016 Palantir Technologies Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.palantir.docker.compose.execution;
import static com.google.common.base.Preconditions.checkState;
import com.github.zafarkhaja.semver.Version;
import com.google.common.collect.ObjectArrays;
import com.palantir.docker.compose.connection.DockerMachine;
import com.palantir.docker.compose.connection.State;
import java.io.IOException;
import java.util.Collection;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.lang3.SystemUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Docker {
private static final Logger log = LoggerFactory.getLogger(Docker.class);
// Without java escape characters: ^(\d+)\.(\d+)\.(\d+)(?:-.*)?$
private static final Pattern VERSION_PATTERN = Pattern.compile("^Docker version (\\d+)\\.(\\d+)\\.(\\d+)(?:-.*)?$");
private static final String HEALTH_STATUS_FORMAT =
"--format="
+ "{{if not .State.Running}}DOWN"
+ "{{else if .State.Paused}}PAUSED"
+ "{{else if index .State \"Health\"}}"
+ "{{if eq .State.Health.Status \"healthy\"}}HEALTHY"
+ "{{else}}UNHEALTHY{{end}}"
+ "{{else}}HEALTHY{{end}}";
private static final String HEALTH_STATUS_FORMAT_WINDOWS = HEALTH_STATUS_FORMAT.replaceAll("\"", "`\"");
public static Version version() throws IOException, InterruptedException {
return new Docker(DockerExecutable.builder().dockerConfiguration(DockerMachine.localMachine().build()).build())
.configuredVersion();
}
public Version configuredVersion() throws IOException, InterruptedException {
String versionString = command.execute(Command.throwingOnError(), "-v");
Matcher matcher = VERSION_PATTERN.matcher(versionString);
checkState(matcher.matches(), "Unexpected output of docker -v: %s", versionString);
return Version.forIntegers(Integer.parseInt(matcher.group(1)),
Integer.parseInt(matcher.group(2)),
Integer.parseInt(matcher.group(3)));
}
private final Command command;
public Docker(DockerExecutable rawExecutable) {
this.command = new Command(rawExecutable, log::trace);
}
public State state(String containerId) throws IOException, InterruptedException {
String formatString = SystemUtils.IS_OS_WINDOWS ? HEALTH_STATUS_FORMAT_WINDOWS : HEALTH_STATUS_FORMAT;
String stateString = command.execute(Command.throwingOnError(), "inspect", formatString, containerId);
return State.valueOf(stateString);
}
public void rm(Collection containerNames) throws IOException, InterruptedException {
rm(containerNames.toArray(new String[containerNames.size()]));
}
public void rm(String... containerNames) throws IOException, InterruptedException {
command.execute(Command.throwingOnError(),
ObjectArrays.concat(new String[] {"rm", "-f"}, containerNames, String.class));
}
public String listNetworks() throws IOException, InterruptedException {
return command.execute(Command.throwingOnError(), "network", "ls");
}
public String pruneNetworks() throws IOException, InterruptedException {
return command.execute(Command.throwingOnError(), "network", "prune", "--force");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy