de.gesellix.docker.context.DockerContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-engine Show documentation
Show all versions of docker-engine Show documentation
Bare HTTP client for the Docker engine api
package de.gesellix.docker.context;
import java.util.Map;
public class DockerContext {
String description;
// e.g. `"StackOrchestrator": "swarm"`
Map additionalFields;
public DockerContext(String description) {
this.description = description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy