Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java')
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
index 4af2dee9e0..7be3d641fb 100644
--- a/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
+++ b/containers/org.eclipse.linuxtools.docker.core/src/org/eclipse/linuxtools/docker/core/IDockerConnection.java
@@ -13,7 +13,6 @@ package org.eclipse.linuxtools.docker.core;
import java.io.OutputStream;
import java.util.Collections;
import java.util.List;
-import java.util.Map;
import org.eclipse.core.runtime.IPath;
import org.eclipse.linuxtools.internal.docker.core.DockerContainerRefreshManager;
@@ -212,28 +211,6 @@ public interface IDockerConnection {
String createContainer(IDockerContainerConfig c, IDockerHostConfig hc)
throws DockerException, InterruptedException;
- /**
- * Builds an {@link IDockerImage}
- *
- * @param path
- * path to the build context
- * @param name
- * optional name and tag of the image to build
- * @param handler
- * progress handler
- * @param buildOptions
- * build options
- * @return the id of the {@link IDockerImage} that was build
- * @throws DockerException
- * if building image failed
- * @throws InterruptedException
- * if the thread was interrupted
- */
- String buildImage(final IPath path, final String name,
- final IDockerProgressHandler handler,
- final Map<String, Object> buildOptions)
- throws DockerException, InterruptedException;
-
public String createContainer(final IDockerContainerConfig config,
final IDockerHostConfig hc, final String containerName)
throws DockerException, InterruptedException;

Back to the top