Browse code

Add AppArmorProfile to container inspect json

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>

Michael Crosby authored on 2014/11/04 08:00:49
Showing 1 changed files
... ...
@@ -47,6 +47,7 @@ func (daemon *Daemon) ContainerInspect(job *engine.Job) engine.Status {
47 47
 		out.Set("ProcessLabel", container.ProcessLabel)
48 48
 		out.SetJson("Volumes", container.Volumes)
49 49
 		out.SetJson("VolumesRW", container.VolumesRW)
50
+		out.SetJson("AppArmorProfile", container.AppArmorProfile)
50 51
 
51 52
 		if children, err := daemon.Children(container.Name); err == nil {
52 53
 			for linkAlias, child := range children {