Fix comment for container.Start
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
parent
54301f5593
commit
b4cda7a6ca
|
@ -90,7 +90,8 @@ type Container interface {
|
||||||
// Systemerror - System error.
|
// Systemerror - System error.
|
||||||
Stats() (*Stats, error)
|
Stats() (*Stats, error)
|
||||||
|
|
||||||
// Start a process inside the container. Returns the PID of the new process (in the caller process's namespace) and a channel that will return the exit status of the process whenever it dies.
|
// Start a process inside the container. Returns error if process fails to
|
||||||
|
// start. You can track process lifecycle with passed Process structure.
|
||||||
//
|
//
|
||||||
// errors:
|
// errors:
|
||||||
// ContainerDestroyed - Container no longer exists,
|
// ContainerDestroyed - Container no longer exists,
|
||||||
|
|
Loading…
Reference in New Issue