com.github.dockerjava.core.exec.CopyArchiveFromContainerCmdExec 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.core.exec;
import java.io.InputStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.dockerjava.api.command.CopyArchiveFromContainerCmd;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.MediaType;
import com.github.dockerjava.core.WebTarget;
public class CopyArchiveFromContainerCmdExec extends AbstrSyncDockerCmdExec
implements CopyArchiveFromContainerCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(CopyArchiveFromContainerCmdExec.class);
public CopyArchiveFromContainerCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected InputStream execute(CopyArchiveFromContainerCmd command) {
WebTarget webResource = getBaseResource().path("/containers/{id}/archive").resolveTemplate("id",
command.getContainerId());
LOGGER.trace("Get: " + webResource.toString());
return webResource.queryParam("path", command.getResource()).request().accept(MediaType.APPLICATION_X_TAR)
.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy