From 2cf92abf0eff49b21812d88e74813b8848f9b758 Mon Sep 17 00:00:00 2001 From: unclejack Date: Fri, 24 May 2013 21:40:56 +0300 Subject: [PATCH] add arch field to image struct --- image.go | 1 + 1 file changed, 1 insertion(+) diff --git a/image.go b/image.go index 342c0c94b7..d825b4bba2 100644 --- a/image.go +++ b/image.go @@ -27,6 +27,7 @@ type Image struct { DockerVersion string `json:"docker_version,omitempty"` Author string `json:"author,omitempty"` Config *Config `json:"config,omitempty"` + Architecture string `json:"architecture,omitempty"` graph *Graph }