Update runc version to 1.0.0-rc1

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
1 file changed
tree: 43458c585ffbe4cfae9a2a99ccfe31fa317c0375
  1. contrib/
  2. Godeps/
  3. libcontainer/
  4. man/
  5. script/
  6. tests/
  7. .gitignore
  8. .pullapprove.yml
  9. checkpoint.go
  10. CONTRIBUTING.md
  11. create.go
  12. delete.go
  13. Dockerfile
  14. events.go
  15. exec.go
  16. kill.go
  17. LICENSE
  18. list.go
  19. main.go
  20. main_solaris.go
  21. main_unix.go
  22. main_unsupported.go
  23. MAINTAINERS
  24. MAINTAINERS_GUIDE.md
  25. Makefile
  26. NOTICE
  27. pause.go
  28. PRINCIPLES.md
  29. ps.go
  30. README.md
  31. restore.go
  32. rlimit_linux.go
  33. run.go
  34. signals.go
  35. spec.go
  36. start.go
  37. state.go
  38. tty.go
  39. update.go
  40. utils.go
  41. utils_linux.go
  42. VERSION
README.md

[![Build Status](https://jenkins.dockerproject.org/buildStatus/icon?job=runc Master)](https://jenkins.dockerproject.org/job/runc Master)

runc

runc is a CLI tool for spawning and running containers according to the OCI specification.

State of the project

Currently runc is an implementation of the OCI specification. We are currently sprinting to have a v1 of the spec out. So the runc config format will be constantly changing until the spec is finalized. However, we encourage you to try out the tool and give feedback.

OCI

How does runc integrate with the Open Container Initiative Specification? runc depends on the types specified in the specs repository. Whenever the specification is updated and ready to be versioned runc will update its dependency on the specs repository and support the update spec.

Building:

At the time of writing, runc only builds on the Linux platform.

# create a 'github.com/opencontainers' in your GOPATH/src
cd github.com/opencontainers
git clone https://github.com/opencontainers/runc
cd runc
make
sudo make install

In order to enable seccomp support you will need to install libseccomp on your platform. If you do not want to build runc with seccomp support you can add BUILDTAGS="" when running make.

Build Tags

runc supports optional build tags for compiling in support for various features.

Build TagFeatureDependency
seccompSyscall filteringlibseccomp
selinuxselinux process and mount labeling
apparmorapparmor profile supportlibapparmor

Testing:

You can run tests for runC by using command:

# make test

Note that test cases are run in Docker container, so you need to install docker first. And test requires mounting cgroups inside container, it's done by docker now, so you need a docker version newer than 1.8.0-rc2.

You can also run specific test cases by:

# make test TESTFLAGS="-run=SomeTestFunction"

Using:

To run a container with the id “test”, execute runc start with the containers id as arg one in the bundle's root directory:

runc start test
/ $ ps
PID   USER     COMMAND
1     daemon   sh
5     daemon   sh
/ $

OCI Container JSON Format:

OCI container JSON format is based on OCI specs. You can generate JSON files by using runc spec. It assumes that the file-system is found in a directory called rootfs and there is a user with uid and gid of 0 defined within that file-system.

Examples:

Using a Docker image (requires version 1.3 or later)

To test using Docker's busybox image follow these steps:

  • Install docker and download the busybox image: docker pull busybox
  • Create a container from that image and export its contents in a directory:
mkdir rootfs
docker export $(docker create busybox) | tar -C rootfs -xvf -
  • Create config.json by using runc spec.
  • Execute runc start and you should be placed into a shell where you can run ps:
$ runc start test
/ # ps
PID   USER     COMMAND
    1 root     sh
    9 root     ps

Using runc with systemd

To use runc with systemd, you can create a unit file /usr/lib/systemd/system/minecraft.service as below (edit your own Description or WorkingDirectory or service name as you need).

[Unit]
Description=Minecraft Build Server
Documentation=http://minecraft.net
After=network.target

[Service]
CPUQuota=200%
MemoryLimit=1536M
ExecStart=/usr/local/sbin/runc start minecraft
Restart=on-failure
WorkingDirectory=/containers/minecraftbuild

[Install]
WantedBy=multi-user.target

Make sure you have the bundle's root directory and JSON configs in your WorkingDirectory, then use systemd commands to start the service:

systemctl daemon-reload
systemctl start minecraft.service

Note that if you use JSON configs by runc spec, you need to modify config.json and change process.terminal to false so runc won‘t create tty, because we can’t set terminal from the stdin when using systemd service.