Package | Description |
---|---|
org.springframework.boot.buildpack.platform.docker |
A limited Docker API providing the operations needed by pack.
|
Modifier and Type | Class and Description |
---|---|
class |
TotalProgressListener<E extends ImageProgressUpdateEvent>
UpdateListener that calculates the total progress of the entire image operation
and publishes TotalProgressEvent . |
class |
TotalProgressPullListener
UpdateListener that calculates the total progress of the entire pull operation
and publishes TotalProgressEvent . |
class |
TotalProgressPushListener
UpdateListener that calculates the total progress of the entire push operation
and publishes TotalProgressEvent . |
Modifier and Type | Field and Description |
---|---|
static UpdateListener<UpdateEvent> |
UpdateListener.NONE
A no-op update listener.
|
Modifier and Type | Method and Description |
---|---|
static <E extends UpdateEvent> |
UpdateListener.none()
A no-op update listener that does nothing.
|
Modifier and Type | Method and Description |
---|---|
void |
DockerApi.ImageApi.load(ImageArchive archive,
UpdateListener<LoadImageUpdateEvent> listener)
Load an
ImageArchive into Docker. |
void |
DockerApi.ContainerApi.logs(ContainerReference reference,
UpdateListener<LogUpdateEvent> listener)
Return and follow logs for a specific container.
|
Image |
DockerApi.ImageApi.pull(ImageReference reference,
UpdateListener<PullImageUpdateEvent> listener)
Pull an image from a registry.
|
Image |
DockerApi.ImageApi.pull(ImageReference reference,
UpdateListener<PullImageUpdateEvent> listener,
String registryAuth)
Pull an image from a registry.
|
void |
DockerApi.ImageApi.push(ImageReference reference,
UpdateListener<PushImageUpdateEvent> listener,
String registryAuth)
Push an image to a registry.
|