com.github.dockerjava.api.model.VolumeBind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.model;
public class VolumeBind {
private final String hostPath;
private final String containerPath;
public VolumeBind(String hostPath, String containerPath){
this.hostPath = hostPath;
this.containerPath = containerPath;
}
public String getContainerPath() {
return containerPath;
}
public String getHostPath() {
return hostPath;
}
@Override
public String toString() {
return hostPath + ":" + containerPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy