From 15facf113ce1dea8be0326b31a456e56c0dc0d8e Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Sun, 20 Apr 2014 10:53:38 -0700 Subject: [PATCH] Move Dns and VolumesFrom to host config Also add DNS search --- types.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/types.go b/types.go index 060702c2a88c7..5e8e54686328c 100644 --- a/types.go +++ b/types.go @@ -15,9 +15,7 @@ type ContainerConfig struct { StdinOnce bool Env []string Cmd []string - Dns []string Image string - VolumesFrom string WorkingDir string Entrypoint []string NetworkDisabled bool @@ -31,6 +29,9 @@ type HostConfig struct { PortBindings map[string][]PortBinding Links []string PublishAllPorts bool + Dns []string + DnsSearch []string + VolumesFrom []string } type PortBinding struct {