You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/compose/container.go
-11Lines changed: 0 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -20,17 +20,6 @@ import (
20
20
"io"
21
21
22
22
moby "github.com/docker/docker/api/types"
23
-
"github.com/docker/docker/api/types/container"
24
-
)
25
-
26
-
const (
27
-
ContainerCreated=container.StateCreated// StateCreated indicates the container is created, but not (yet) started.
28
-
ContainerRunning=container.StateRunning// StateRunning indicates that the container is running.
29
-
ContainerPaused=container.StatePaused// StatePaused indicates that the container's current state is paused.
30
-
ContainerRestarting=container.StateRestarting// StateRestarting indicates that the container is currently restarting.
31
-
ContainerRemoving=container.StateRemoving// StateRemoving indicates that the container is being removed.
32
-
ContainerExited=container.StateExited// StateExited indicates that the container exited.
33
-
ContainerDead=container.StateDead// StateDead indicates that the container failed to be deleted. Containers in this state are attempted to be cleaned up when the daemon restarts.
0 commit comments