Merge pull request #211 from mrunalp/sec_integration

Integrate security settings
This commit is contained in:
Michael Crosby 2015-08-19 11:52:57 -07:00
commit 2b9673deb9
1 changed files with 2 additions and 0 deletions

View File

@ -283,6 +283,8 @@ func createLibcontainerConfig(cgroupName string, spec *specs.LinuxSpec) (*config
}
}
config.Sysctl = spec.Linux.Sysctl
config.ProcessLabel = spec.Linux.SelinuxProcessLabel
config.AppArmorProfile = spec.Linux.ApparmorProfile
return config, nil
}