Files
docker-cli/components/engine/daemon
Dan Walsh fe37a1db8f Add --security-opts options to allow user to customize security configuration
security-opts will allow you to customise the security subsystem.

For example the labeling system like SELinux will run on a container.

    --security-opt="label:user:USER"   : Set the label user for the container
    --security-opt="label:role:ROLE"   : Set the label role for the container
    --security-opt="label:type:TYPE"   : Set the label type for the container
    --security-opt="label:level:LEVEL" : Set the label level for the container
    --security-opt="label:disabled"    : Turn off label confinement for the container

Since we are passing a list of string options instead of a space separated
string of options, I will change function calls to use InitLabels instead of
GenLabels.  Genlabels interface is Depracated.

Docker-DCO-1.1-Signed-off-by: Dan Walsh <dwalsh@redhat.com> (github: rhatdan)
Upstream-commit: 87e732a0f3503517d7a66804bb9a7f74977347e5
Component: engine
2014-09-30 00:06:22 +00:00
..
2014-08-01 14:24:46 -04:00
2014-08-01 14:17:24 -04:00
2014-09-29 22:40:26 +00:00
2014-08-01 14:24:41 -04:00
2014-08-13 15:18:15 -07:00
2014-08-06 10:08:19 +00:00
2014-08-13 15:18:15 -07:00
2014-08-06 10:08:19 +00:00
2014-09-03 00:01:11 +04:00
2014-09-22 18:57:28 +03:00
2014-09-03 00:01:11 +04:00
2014-08-06 10:08:19 +00:00
2014-05-17 17:56:02 +00:00
2014-08-06 10:08:19 +00:00
2014-08-13 11:37:30 +04:00
2014-09-09 01:16:19 -04:00
2014-09-03 00:01:11 +04:00
2014-09-03 00:01:11 +04:00
2014-09-29 22:40:26 +00:00
2014-09-19 17:47:47 -05:00

This directory contains code pertaining to running containers and storing images

Code pertaining to running containers:

  • execdriver
  • networkdriver

Code pertaining to storing images:

  • graphdriver