mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
87e732a0f3
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) |
||
---|---|---|
.. | ||
execdriver | ||
graphdriver | ||
networkdriver | ||
attach.go | ||
changes.go | ||
commit.go | ||
config.go | ||
container.go | ||
container_unit_test.go | ||
copy.go | ||
create.go | ||
daemon.go | ||
daemon_aufs.go | ||
daemon_btrfs.go | ||
daemon_devicemapper.go | ||
daemon_no_aufs.go | ||
delete.go | ||
exec.go | ||
export.go | ||
history.go | ||
image_delete.go | ||
info.go | ||
inspect.go | ||
kill.go | ||
list.go | ||
logs.go | ||
MAINTAINERS | ||
monitor.go | ||
network_settings.go | ||
pause.go | ||
README.md | ||
resize.go | ||
restart.go | ||
start.go | ||
state.go | ||
state_test.go | ||
stop.go | ||
top.go | ||
utils.go | ||
utils_linux.go | ||
utils_nolinux.go | ||
utils_test.go | ||
volumes.go | ||
wait.go |
This directory contains code pertaining to running containers and storing images
Code pertaining to running containers:
- execdriver
- networkdriver
Code pertaining to storing images:
- graphdriver