Update github.com/fsouza/go-dockerclient to pick up IpcMode support.

This commit is contained in:
Mrunal Patel
2015-01-22 12:03:38 -08:00
parent 80ad188912
commit 683fd13ce6
20 changed files with 509 additions and 66 deletions

View File

@@ -358,6 +358,7 @@ type HostConfig struct {
ExtraHosts []string `json:"ExtraHosts,omitempty" yaml:"ExtraHosts,omitempty"`
VolumesFrom []string `json:"VolumesFrom,omitempty" yaml:"VolumesFrom,omitempty"`
NetworkMode string `json:"NetworkMode,omitempty" yaml:"NetworkMode,omitempty"`
IpcMode string `json:"IpcMode,omitempty" yaml:"IpcMode,omitempty"`
RestartPolicy RestartPolicy `json:"RestartPolicy,omitempty" yaml:"RestartPolicy,omitempty"`
}