-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add create and start command for container lifecycle
Signed-off-by: Michael Crosby <[email protected]>
- Loading branch information
1 parent
75fb70b
commit 3fe7d7f
Showing
13 changed files
with
209 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package main | ||
|
||
import ( | ||
"os" | ||
|
||
"github.com/codegangsta/cli" | ||
) | ||
|
||
var createCommand = cli.Command{ | ||
Name: "create", | ||
Usage: "create a container", | ||
ArgsUsage: `<container-id> | ||
Where "<container-id>" is your name for the instance of the container that you | ||
are starting. The name you provide for the container instance must be unique on | ||
your host.`, | ||
Description: `The create command creates an instance of a container for a bundle. The bundle | ||
is a directory with a specification file named "` + specConfig + `" and a root | ||
filesystem. | ||
The specification file includes an args parameter. The args parameter is used | ||
to specify command(s) that get run when the container is started. To change the | ||
command(s) that get executed on start, edit the args parameter of the spec. See | ||
"runc spec --help" for more explanation.`, | ||
Flags: []cli.Flag{ | ||
cli.StringFlag{ | ||
Name: "bundle, b", | ||
Value: "", | ||
Usage: `path to the root of the bundle directory, defaults to the current directory`, | ||
}, | ||
cli.StringFlag{ | ||
Name: "console", | ||
Value: "", | ||
Usage: "specify the pty slave path for use with the container", | ||
}, | ||
cli.StringFlag{ | ||
Name: "pid-file", | ||
Value: "", | ||
Usage: "specify the file to write the process id to", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "no-pivot", | ||
Usage: "do not use pivot root to jail process inside rootfs. This should be used whenever the rootfs is on top of a ramdisk", | ||
}, | ||
}, | ||
Action: func(context *cli.Context) { | ||
bundle := context.String("bundle") | ||
if bundle != "" { | ||
if err := os.Chdir(bundle); err != nil { | ||
fatal(err) | ||
} | ||
} | ||
spec, err := loadSpec(specConfig) | ||
if err != nil { | ||
fatal(err) | ||
} | ||
notifySocket := os.Getenv("NOTIFY_SOCKET") | ||
if notifySocket != "" { | ||
setupSdNotify(spec, notifySocket) | ||
} | ||
if os.Geteuid() != 0 { | ||
fatalf("runc should be run as root") | ||
} | ||
status, err := startContainer(context, spec, true) | ||
if err != nil { | ||
fatal(err) | ||
} | ||
// exit with the container's exit status so any external supervisor is | ||
// notified of the exit with the correct exit status. | ||
os.Exit(status) | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.