Go to file
Michael Crosby 53a67a77b9 Update dockerfile for running tests
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
2014-07-23 10:32:31 -07:00
apparmor Update a few build tags to be more generic, add a couple more SETNS constants, and update Travis with a bunch of fixes/tweaks (including removing the nonfunctional cross-compile stuff for now) 2014-07-17 02:24:49 -06:00
cgroups Small fix for GetAllCgroups(). 2014-07-21 18:55:06 -07:00
console Remove terminal handling in libcontainer 2014-07-15 16:55:11 -07:00
devices Use lstat to check device symlinks 2014-06-16 14:51:02 -07:00
label Allow caller to change the labels on a directory tree. 2014-07-09 14:40:13 -04:00
mount Merge pull request #107 from vishh/dev_null 2014-07-21 14:11:42 -07:00
namespaces Updated RunIn API to match the new console handling behavior in HEAD. 2014-07-22 19:49:59 +00:00
netlink Merge pull request #46 from dhammika/44-delete-bridge 2014-07-21 11:29:24 -07:00
network Merge pull request #98 from thockin/netperf 2014-07-14 18:07:46 -07:00
nsinit Fix runin code for nsinit 2014-07-22 19:50:00 +00:00
sample_configs Add tests and sample files for selinux and apparmor 2014-06-24 18:11:52 -07:00
security Migrate selinux system xattr calls and prctl calls 2014-07-14 16:55:49 -07:00
selinux Add linux build tags for selinux 2014-07-16 16:24:28 -07:00
syncpipe Move syncpipe into separate package 2014-07-11 11:06:00 -07:00
system Fix 386 and arm cross-compile 2014-07-18 16:08:54 -06:00
utils Fix invalid fd race 2014-06-16 10:26:18 +02:00
.travis.yml Add "linux/arm" to Travis 2014-07-21 23:47:13 -06:00
CONTRIBUTORS_GUIDE.md Replacing docker-dev with libcontainer mailing list. 2014-06-19 09:10:07 -07:00
Dockerfile Update dockerfile for running tests 2014-07-23 10:32:31 -07:00
LICENSE Add licensing information 2014-06-09 16:16:58 -07:00
MAINTAINERS Add Tianon as the .travis.yml maintainer 2014-06-12 13:01:30 -06:00
MAINTAINERS_GUIDE.md Require two LGTMs for non-maintainer changes. 2014-06-18 10:22:33 -07:00
NOTICE Add licensing information 2014-06-09 16:16:58 -07:00
PRINCIPLES.md Grammatical improvements 2014-06-13 11:14:29 +01:00
README.md Improve nsinit usage instructions 2014-06-26 11:57:09 +01:00
ROADMAP.md Correct links to libcontainer issues 2014-06-13 12:06:05 +01:00
api_temp.go Fix nsinit function to get stats from systemd 2014-07-11 12:00:27 -07:00
config.go Update api proposal 2014-07-08 11:27:27 -07:00
config_test.go Update api proposal 2014-07-08 11:27:27 -07:00
container.go Add Exec to container API 2014-07-17 11:06:07 -07:00
factory.go Use conventional factory terminology 2014-07-10 11:50:51 +01:00
process.go Update api proposal 2014-07-08 11:27:27 -07:00
state.go Update api proposal 2014-07-08 11:27:27 -07:00
types.go Refactoring. 2014-06-26 05:04:20 +00:00

README.md

libcontainer - reference implementation for containers

Note on API changes:

Please bear with us while we work on making the libcontainer API stable and something that we can support long term. We are currently discussing the API with the community, therefore, if you currently depend on libcontainer please pin your dependency at a specific tag or commit id. Please join the discussion and help shape the API.

Background

libcontainer specifies configuration options for what a container is. It provides a native Go implementation for using Linux namespaces with no external dependencies. libcontainer provides many convenience functions for working with namespaces, networking, and management.

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.

libcontainer may be used to execute a process in a container. If a user tries to run a new process inside an existing container, the new process is added to the processes executing in the container.

Root file system

A container runs with a directory known as its root file system, or rootfs, mounted as the file system root. The rootfs is usually a full system tree.

Configuration

A container is initially configured by supplying configuration data when the container is created.

nsinit

nsinit is a cli application which demonstrates the use of libcontainer. It is able to spawn new containers or join existing containers, based on the current directory.

To use nsinit, cd into a Linux rootfs and copy a container.json file into the directory with your specified configuration. Environment, networking, and different capabilities for the container are specified in this file. The configuration is used for each process executed inside the container.

See the sample_configs folder for examples of what the container configuration should look like.

To execute /bin/bash in the current directory as a container just run the following as root:

nsinit exec /bin/bash

If you wish to spawn another process inside the container while your current bash session is running, run the same command again to get another bash shell (or change the command). If the original process (PID 1) dies, all other processes spawned inside the container will be killed and the namespace will be removed.

You can identify if a process is running in a container by looking to see if state.json is in the root of the directory.

You may also specify an alternate root place where the container.json file is read and where the state.json file will be saved.

Future

See the roadmap.

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

Hacking on libcontainer

First of all, please familiarise yourself with the libcontainer Principles.

If you're a contributor or aspiring contributor, you should read the Contributors' Guide.

If you're a maintainer or aspiring maintainer, you should read the Maintainers' Guide and "How can I become a maintainer?" in the Contributors' Guide.