@@ -18,6 +18,7 @@ package tasks
18
18
19
19
import (
20
20
"github.com/containerd/console"
21
+ "github.com/containerd/containerd"
21
22
"github.com/containerd/containerd/cio"
22
23
"github.com/containerd/containerd/cmd/ctr/commands"
23
24
"github.com/pkg/errors"
@@ -42,11 +43,16 @@ var startCommand = cli.Command{
42
43
Name : "pid-file" ,
43
44
Usage : "file path to write the task's pid" ,
44
45
},
46
+ cli.BoolFlag {
47
+ Name : "detach,d" ,
48
+ Usage : "detach from the task after it has started execution" ,
49
+ },
45
50
},
46
51
Action : func (context * cli.Context ) error {
47
52
var (
48
- err error
49
- id = context .Args ().Get (0 )
53
+ err error
54
+ id = context .Args ().Get (0 )
55
+ detach = context .Bool ("detach" )
50
56
)
51
57
if id == "" {
52
58
return errors .New ("container id must be provided" )
@@ -83,20 +89,25 @@ var startCommand = cli.Command{
83
89
if err != nil {
84
90
return err
85
91
}
86
- defer task .Delete (ctx )
92
+ var statusC <- chan containerd.ExitStatus
93
+ if ! detach {
94
+ defer task .Delete (ctx )
95
+ if statusC , err = task .Wait (ctx ); err != nil {
96
+ return err
97
+ }
98
+ }
87
99
if context .IsSet ("pid-file" ) {
88
100
if err := commands .WritePidFile (context .String ("pid-file" ), int (task .Pid ())); err != nil {
89
101
return err
90
102
}
91
103
}
92
- statusC , err := task .Wait (ctx )
93
- if err != nil {
94
- return err
95
- }
96
104
97
105
if err := task .Start (ctx ); err != nil {
98
106
return err
99
107
}
108
+ if detach {
109
+ return nil
110
+ }
100
111
if tty {
101
112
if err := HandleConsoleResize (ctx , task , con ); err != nil {
102
113
logrus .WithError (err ).Error ("console resize" )
0 commit comments