| Package | Description |
|---|---|
| com.spotify.docker.client |
| Modifier and Type | Class and Description |
|---|---|
class |
AnsiProgressHandler
Parses ProgressMessage objects and writes the output to a PrintStream.
|
class |
LoggingBuildHandler |
class |
LoggingLoadHandler |
class |
LoggingPullHandler |
class |
LoggingPushHandler |
| Modifier and Type | Method and Description |
|---|---|
String |
DefaultDockerClient.build(Path directory,
ProgressHandler handler,
DockerClient.BuildParam... params) |
String |
DockerClient.build(Path directory,
ProgressHandler handler,
DockerClient.BuildParam... params)
Build a docker image.
|
String |
DefaultDockerClient.build(Path directory,
String name,
ProgressHandler handler,
DockerClient.BuildParam... params) |
String |
DockerClient.build(Path directory,
String name,
ProgressHandler handler,
DockerClient.BuildParam... params)
Build a docker image.
|
String |
DefaultDockerClient.build(Path directory,
String name,
String dockerfile,
ProgressHandler handler,
DockerClient.BuildParam... params) |
String |
DockerClient.build(Path directory,
String name,
String dockerfile,
ProgressHandler handler,
DockerClient.BuildParam... params)
Build a docker image.
|
void |
DefaultDockerClient.create(String image,
InputStream imagePayload,
ProgressHandler handler) |
void |
DockerClient.create(String image,
InputStream imagePayload,
ProgressHandler handler)
Creates a single image from a tarball.
|
Set<String> |
DefaultDockerClient.load(InputStream imagePayload,
ProgressHandler handler) |
Set<String> |
DockerClient.load(InputStream imagePayload,
ProgressHandler handler)
Load a set of images and tags from a tarball, using a custom ProgressMessageHandler.
|
void |
DefaultDockerClient.load(String image,
InputStream imagePayload,
ProgressHandler handler)
Deprecated.
|
void |
DockerClient.load(String image,
InputStream imagePayload,
ProgressHandler handler)
Deprecated.
Use
DockerClient.load(InputStream) to load a set of image layers from a tarball. Use
DockerClient.create(String, InputStream, ProgressHandler) to create a single image
from the contents of a tarball. |
void |
DefaultDockerClient.pull(String image,
ProgressHandler handler) |
void |
DockerClient.pull(String image,
ProgressHandler handler)
Pull a docker container image, using a custom ProgressMessageHandler
|
void |
DefaultDockerClient.pull(String image,
RegistryAuth registryAuth,
ProgressHandler handler) |
void |
DockerClient.pull(String image,
RegistryAuth registryAuth,
ProgressHandler handler)
Pull a private docker container image, using a custom ProgressMessageHandler.
|
void |
DefaultDockerClient.push(String image,
ProgressHandler handler) |
void |
DockerClient.push(String image,
ProgressHandler handler)
Push a docker container image, using a custom ProgressHandler
|
void |
DefaultDockerClient.push(String image,
ProgressHandler handler,
RegistryAuth registryAuth) |
void |
DockerClient.push(String image,
ProgressHandler handler,
RegistryAuth registryAuth) |
Copyright © 2019. All rights reserved.