From e39b89957d64bc82184182c965bba0ca74ac8dda Mon Sep 17 00:00:00 2001 From: Kohei Suzuki Date: Sat, 20 Jun 2015 21:34:46 +0900 Subject: [PATCH] Correct VolumesFrom definition Fixes #1068 . --- shared/build/docker/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/build/docker/structs.go b/shared/build/docker/structs.go index d30282f9c..0d3388999 100644 --- a/shared/build/docker/structs.go +++ b/shared/build/docker/structs.go @@ -133,7 +133,7 @@ type Config struct { Dns []string Image string // Name of the image as it was passed by the operator (eg. could be symbolic) Volumes map[string]struct{} - VolumesFrom string + VolumesFrom []string WorkingDir string Entrypoint []string NetworkDisabled bool