From f50dcbe404fd64dd0c69194bab3ea4aecb1d9f0d Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Thu, 21 Mar 2013 22:45:22 -0700 Subject: [PATCH] Image.ParentCommand and Image.ParentConatiner should be stored --- image.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.go b/image.go index 546237c983..2f3e6f1b8f 100644 --- a/image.go +++ b/image.go @@ -19,8 +19,8 @@ type Image struct { Parent string `json:"parent,omitempty"` Comment string `json:"comment,omitempty"` Created time.Time `json:"created"` - ParentContainer string `json:-` - ParentCommand []string `json:-` + ParentContainer string `json:"parent_container,omitempty"` + ParentCommand []string `json:"parent_command,omitempty"` graph *Graph }