mirror of
https://github.com/docker/compose.git
synced 2026-08-04 14:47:40 +00:00
Restored image layer download progress details on pull.
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
4f419e5098
commit
02008a0097
3 changed files with 152 additions and 93 deletions
|
|
@ -38,33 +38,35 @@ const (
|
|||
const ResourceCompose = "Compose"
|
||||
|
||||
const (
|
||||
StatusError = "Error"
|
||||
StatusCreating = "Creating"
|
||||
StatusStarting = "Starting"
|
||||
StatusStarted = "Started"
|
||||
StatusWaiting = "Waiting"
|
||||
StatusHealthy = "Healthy"
|
||||
StatusExited = "Exited"
|
||||
StatusRestarting = "Restarting"
|
||||
StatusRestarted = "Restarted"
|
||||
StatusRunning = "Running"
|
||||
StatusCreated = "Created"
|
||||
StatusStopping = "Stopping"
|
||||
StatusStopped = "Stopped"
|
||||
StatusKilling = "Killing"
|
||||
StatusKilled = "Killed"
|
||||
StatusRemoving = "Removing"
|
||||
StatusRemoved = "Removed"
|
||||
StatusBuilding = "Building"
|
||||
StatusBuilt = "Built"
|
||||
StatusPulling = "Pulling"
|
||||
StatusPulled = "Pulled"
|
||||
StatusCommitting = "Committing"
|
||||
StatusCommitted = "Committed"
|
||||
StatusCopying = "Copying"
|
||||
StatusCopied = "Copied"
|
||||
StatusExporting = "Exporting"
|
||||
StatusExported = "Exported"
|
||||
StatusError = "Error"
|
||||
StatusCreating = "Creating"
|
||||
StatusStarting = "Starting"
|
||||
StatusStarted = "Started"
|
||||
StatusWaiting = "Waiting"
|
||||
StatusHealthy = "Healthy"
|
||||
StatusExited = "Exited"
|
||||
StatusRestarting = "Restarting"
|
||||
StatusRestarted = "Restarted"
|
||||
StatusRunning = "Running"
|
||||
StatusCreated = "Created"
|
||||
StatusStopping = "Stopping"
|
||||
StatusStopped = "Stopped"
|
||||
StatusKilling = "Killing"
|
||||
StatusKilled = "Killed"
|
||||
StatusRemoving = "Removing"
|
||||
StatusRemoved = "Removed"
|
||||
StatusBuilding = "Building"
|
||||
StatusBuilt = "Built"
|
||||
StatusPulling = "Pulling"
|
||||
StatusPulled = "Pulled"
|
||||
StatusCommitting = "Committing"
|
||||
StatusCommitted = "Committed"
|
||||
StatusCopying = "Copying"
|
||||
StatusCopied = "Copied"
|
||||
StatusExporting = "Exporting"
|
||||
StatusExported = "Exported"
|
||||
StatusDownloading = "Downloading"
|
||||
StatusDownloadComplete = "Download complete"
|
||||
)
|
||||
|
||||
// Resource represents status change and progress for a compose resource.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue