docker/daemon
Alexander Larsson fcf2e9a910 native driver: Add required capabilities
We need SETFCAP to be able to mark files as having caps, which is
heavily used by fedora.
See https://github.com/dotcloud/docker/issues/5928

We also need SETPCAP, for instance systemd needs this to set caps
on its childen.

Both of these are safe in the sense that they can never ever
result in a process with a capability not in the bounding set of the
container.

We also add NET_BIND_SERVICE caps, to be able to bind to ports lower
than 1024.

Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
2014-05-20 11:31:39 +02:00
..
execdriver native driver: Add required capabilities 2014-05-20 11:31:39 +02:00
graphdriver devmapper: Remove sys.go mocking framework 2014-05-16 14:12:56 +02:00
networkdriver Change ip allocation logic 2014-05-14 06:43:10 +04:00
README.md Add readme for daemon directory 2014-05-17 17:56:02 +00:00
attach.go Move Attach from container to daemon 2014-05-05 16:48:56 -07:00
container.go Merge pull request #5720 from cyphar/5656-cp-absolute-paths 2014-05-14 11:46:11 -07:00
container_unit_test.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
daemon.go starts by removing the name from the graph db 2014-05-19 21:22:33 +00:00
daemon_aufs.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
daemon_btrfs.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
daemon_devicemapper.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
daemon_no_aufs.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
history.go don't call sort for every add in history 2014-05-14 15:02:02 +03:00
network_settings.go Fix port mapping in ps display for public and private 2014-05-12 15:26:23 -07:00
server.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
state.go Move duration and size to units pkg 2014-05-12 17:05:07 -07:00
utils.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
utils_test.go Rename runtime/* to daemon/* 2014-04-17 14:43:01 -07:00
volumes.go daemon: *: refactored container resource path generation 2014-05-14 11:15:50 +10:00

README.md

This directory contains code pertaining to running containers and storing images

Code pertaining to running containers:

  • execdriver
  • networkdriver

Code pertaining to storing images:

  • graphdriver