runc/libcontainer
xlgao-zju cdc53051a3 update date in README
Signed-off-by: xlgao-zju <xlgao@zju.edu.cn>
2016-01-08 10:48:11 +08:00
..
apparmor Adding error conditions when apparmor disabled 2015-11-22 13:14:18 +05:30
cgroups Add some comments about cgroup 2015-11-05 19:12:53 +08:00
configs libcontainer: configs: create cgroup_unsupported.go in order to build on darwin as well 2015-11-27 10:28:29 +01:00
criurpc Add option to support criu manage cgroups mode for dump and restore 2015-10-11 04:42:54 +00:00
devices Windows: Tidy libcontainer\devices 2015-10-23 13:50:24 -07:00
hack Update import paths for new repository 2015-06-21 19:29:59 -07:00
integration Reorder checks in Walk to avoid panics 2015-10-13 15:06:57 -07:00
label Docker needs to know whether the user requested a relabel 2015-10-28 15:44:38 -04:00
nsenter setns: replace env with netlink for bootstrap data 2015-12-03 18:03:48 +00:00
seccomp Add seccomp trace support 2015-11-12 17:03:53 -08:00
selinux Update import paths for new repository 2015-06-21 19:29:59 -07:00
stacktrace avoid infinite loop with GCCGO 2015-07-10 19:15:26 +00:00
system Fix build tags 2015-07-01 13:22:09 -07:00
user Allow numeric groups for containers without /etc/group 2015-10-04 19:02:35 -04:00
utils Fixing typo in the comment for exit 2015-10-22 19:08:03 +05:30
xattr Fixing xattr test step issue 2015-11-29 09:24:42 +05:30
README.md update date in README 2016-01-08 10:48:11 +08:00
SPEC.md libcontainer/SPEC.md: fix /dev/stdio symlinks 2015-10-21 11:10:24 +02:00
capabilities_linux.go Update github.com/syndtr/gocapability/capability to 2c00daeb6c3b45114c80ac44119e7b8801fdd852 2015-09-24 18:44:01 -04:00
compat_1.5_linux.go Don't set /proc/<PID>/setgroups to deny in Go1.5 2015-08-03 14:59:15 -04:00
console.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
console_freebsd.go Export console New func 2015-12-09 11:59:10 -08:00
console_linux.go Export console New func 2015-12-09 11:59:10 -08:00
console_windows.go Export console New func 2015-12-09 11:59:10 -08:00
container.go Windows: Refactor Container interface 2015-11-02 15:12:16 -08:00
container_linux.go setns: replace env with netlink for bootstrap data 2015-12-03 18:03:48 +00:00
container_linux_test.go Update import paths for new repository 2015-06-21 19:29:59 -07:00
container_nouserns_linux.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
container_userns_linux.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
container_windows.go Windows: Refactor Container interface 2015-11-02 15:12:16 -08:00
criu_opts_unix.go Windows: Factor down criu_opts 2015-10-23 12:58:59 -07:00
criu_opts_windows.go Windows: Factor down criu_opts 2015-10-23 12:58:59 -07:00
error.go Export console New func 2015-12-09 11:59:10 -08:00
error_test.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
factory.go Update import paths for new repository 2015-06-21 19:29:59 -07:00
factory_linux.go Add more context around some error cases 2015-10-30 10:55:48 -07:00
factory_linux_test.go Windows: Refactor state struct 2015-10-26 14:45:20 -07:00
generic_error.go Update import paths for new repository 2015-06-21 19:29:59 -07:00
generic_error_test.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
init_linux.go Ignore changing /dev/null permissions if used in STDIO 2015-09-22 15:32:31 -07:00
message_linux.go setns: replace env with netlink for bootstrap data 2015-12-03 18:03:48 +00:00
network_linux.go libcontainer: network_linux.go: fix go vet 2015-11-30 12:31:18 +01:00
notify_linux.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
notify_linux_test.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
process.go Export console New func 2015-12-09 11:59:10 -08:00
process_linux.go setns: add bootstrap data 2015-11-22 11:36:58 +00:00
restored_process.go Add signal API to Container interface 2015-08-03 17:07:29 -07:00
rootfs_linux.go Merge pull request #357 from ashahab-altiscale/350-container-in-container 2015-11-16 14:54:02 -08:00
rootfs_linux_test.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
setgroups_linux.go Don't set /proc/<PID>/setgroups to deny in Go1.5 2015-08-03 14:59:15 -04:00
setns_init_linux.go Adding oom_score_adj as a container config param. 2015-08-31 14:02:59 -07:00
standard_init_linux.go Adding oom_score_adj as a container config param. 2015-08-31 14:02:59 -07:00
stats.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
stats_freebsd.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00
stats_linux.go Update import paths for new repository 2015-06-21 19:29:59 -07:00
stats_windows.go Move libcontainer into subdirectory 2015-06-21 19:29:15 -07:00

README.md

Libcontainer provides a native Go implementation for creating containers with namespaces, cgroups, capabilities, and filesystem access controls. It allows you to manage the lifecycle of the container performing additional operations after the container is created.

Container

A container is a self contained execution environment that shares the kernel of the host system and which is (optionally) isolated from other containers in the system.

Using libcontainer

To create a container you first have to initialize an instance of a factory that will handle the creation and initialization for a container.

Because containers are spawned in a two step process you will need to provide arguments to a binary that will be executed as the init process for the container. To use the current binary that is spawning the containers and acting as the parent you can use os.Args[0] and we have a command called init setup.

root, err := libcontainer.New("/var/lib/container", libcontainer.InitArgs(os.Args[0], "init"))
if err != nil {
    log.Fatal(err)
}

Once you have an instance of the factory created we can create a configuration struct describing how the container is to be created. A sample would look similar to this:

config := &configs.Config{
    Rootfs: rootfs,
    Capabilities: []string{
        "CAP_CHOWN",
        "CAP_DAC_OVERRIDE",
        "CAP_FSETID",
        "CAP_FOWNER",
        "CAP_MKNOD",
        "CAP_NET_RAW",
        "CAP_SETGID",
        "CAP_SETUID",
        "CAP_SETFCAP",
        "CAP_SETPCAP",
        "CAP_NET_BIND_SERVICE",
        "CAP_SYS_CHROOT",
        "CAP_KILL",
        "CAP_AUDIT_WRITE",
    },
    Namespaces: configs.Namespaces([]configs.Namespace{
        {Type: configs.NEWNS},
        {Type: configs.NEWUTS},
        {Type: configs.NEWIPC},
        {Type: configs.NEWPID},
        {Type: configs.NEWNET},
    }),
    Cgroups: &configs.Cgroup{
        Name:            "test-container",
        Parent:          "system",
        AllowAllDevices: false,
        AllowedDevices:  configs.DefaultAllowedDevices,
    },

    Devices:  configs.DefaultAutoCreatedDevices,
    Hostname: "testing",
    Networks: []*configs.Network{
        {
            Type:    "loopback",
            Address: "127.0.0.1/0",
            Gateway: "localhost",
        },
    },
    Rlimits: []configs.Rlimit{
        {
            Type: syscall.RLIMIT_NOFILE,
            Hard: uint64(1024),
            Soft: uint64(1024),
        },
    },
}

Once you have the configuration populated you can create a container:

container, err := root.Create("container-id", config)

To spawn bash as the initial process inside the container and have the processes pid returned in order to wait, signal, or kill the process:

process := &libcontainer.Process{
    Args:   []string{"/bin/bash"},
    Env:    []string{"PATH=/bin"},
    User:   "daemon",
    Stdin:  os.Stdin,
    Stdout: os.Stdout,
    Stderr: os.Stderr,
}

err := container.Start(process)
if err != nil {
    log.Fatal(err)
}

// wait for the process to finish.
status, err := process.Wait()
if err != nil {
    log.Fatal(err)
}

// destroy the container.
container.Destroy()

Additional ways to interact with a running container are:

// return all the pids for all processes running inside the container.
processes, err := container.Processes()

// get detailed cpu, memory, io, and network statistics for the container and
// it's processes.
stats, err := container.Stats()


// pause all processes inside the container.
container.Pause()

// resume all paused processes.
container.Resume()

Checkpoint & Restore

libcontainer now integrates CRIU for checkpointing and restoring containers. This let's you save the state of a process running inside a container to disk, and then restore that state into a new process, on the same machine or on another machine.

criu version 1.5.2 or higher is required to use checkpoint and restore. If you don't already have criu installed, you can build it from source, following the online instructions. criu is also installed in the docker image generated when building libcontainer with docker.

Code and documentation copyright 2016 Docker, inc. Code released under the Apache 2.0 license. Docs released under Creative commons.