Go to file
Victor Marmol 0f49d1f254 Merge pull request #209 from imain/publicjoin
Make joinDevices public.
2014-10-16 14:51:18 +02: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 Create an ApplyDevices call. 2014-10-15 11:59:26 -07:00
console Fix warnings from go vet 2014-08-13 14:38:20 +04:00
devices Inject errors into ioutil.ReadDir calls from devices.go 2014-09-04 17:00:09 -07:00
label Do not check if SELinux is enabled on lowlevel calls to set processlabel 2014-10-11 06:04:52 -04:00
mount Allow mounts to be supplied with the MS_SLAVE option. 2014-09-03 19:37:48 -07:00
namespaces Set apparmor profile in execin 2014-10-14 05:53:44 +00:00
netlink Adds a tx_queuelen setting for veth in the network configuration and defaults it to 0. 2014-10-10 13:29:46 -04:00
network Adds a tx_queuelen setting for veth in the network configuration and defaults it to 0. 2014-10-10 13:29:46 -04:00
nsinit Add RootFs field to configuration options in libcontainer's Config 2014-09-23 16:16:13 -07:00
sample_configs Add tmpfs support to Mount 2014-08-27 03:39:46 -07:00
security Migrate selinux system xattr calls and prctl calls 2014-07-14 16:55:49 -07:00
selinux Do not check if SELinux is enabled on lowlevel calls to set processlabel 2014-10-11 06:04:52 -04:00
syncpipe syncpipe: read from parent before reporting error 2014-09-01 10:36:55 +02:00
system Update system/xattrs_linux.go 2014-10-01 17:24:03 -07:00
user Move "pkg/user" into libcontainer and add support for GetUserGroupSupplementary to return "Home" too 2014-07-29 10:59:18 -06:00
utils Fix invalid fd race 2014-06-16 10:26:18 +02:00
vendor/src/github.com Run update-vendor.sh to vendor our deps 2014-08-04 17:24:17 -06:00
xattr xattr: Disallow build on non linux platforms 2014-10-15 01:06:47 -07:00
.travis.yml Add "update-vendor.sh" script and vendor our current deps (minus Docker, since that'd make a circle) 2014-08-04 17:24:11 -06:00
CONTRIBUTORS_GUIDE.md Update more "dotcloud/docker" refs to "docker/docker" 2014-07-29 11:21:55 -06:00
Dockerfile Add "update-vendor.sh" script and vendor our current deps (minus Docker, since that'd make a circle) 2014-08-04 17:24:11 -06:00
LICENSE Add licensing information 2014-06-09 16:16:58 -07:00
MAINTAINERS Add myself as maintainer. 2014-08-08 19:32:34 -04:00
MAINTAINERS_GUIDE.md Require two LGTMs for non-maintainer changes. 2014-06-18 10:22:33 -07:00
Makefile Fix "go install -v . ./.git/logs/refs/heads ./.git/refs/heads ..." 2014-10-02 16:19:56 -06: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 Add travis status badge 2014-08-12 09:09:25 +04: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 Add RootFs field to configuration options in libcontainer's Config 2014-09-23 16:16:13 -07:00
config_test.go Update api proposal 2014-07-08 11:27:27 -07:00
container.go Unify the errors ProcessConfigInvalid and ConfigInvalid to avoid caller confusion. 2014-09-05 10:08:11 -07:00
error.go Unify the errors ProcessConfigInvalid and ConfigInvalid to avoid caller confusion. 2014-09-05 10:08:11 -07:00
factory.go Add rich errors to the API 2014-09-04 15:01:09 -07:00
process.go Update api proposal 2014-07-08 11:27:27 -07:00
state.go Update cgroups paths in state to be a map with cgroup type as key and path as value. 2014-08-13 23:26:27 +00:00
types.go Do not mark any network stats as 'omitempty' since the value '0' is legal for those stats. 2014-07-23 22:12:23 +00:00
update-vendor.sh Add "update-vendor.sh" script and vendor our current deps (minus Docker, since that'd make a circle) 2014-08-04 17:24:11 -06:00

README.md

libcontainer - reference implementation for containers Build Status

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.