summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go')
-rw-r--r--vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go b/vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go
index f84d369c..7a947d50 100644
--- a/vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go
+++ b/vendor/github.com/mitchellh/packer/builder/docker/step_connect_docker.go
@@ -22,9 +22,9 @@ func (s *StepConnectDocker) Run(state multistep.StateBag) multistep.StepAction {
// Create the communicator that talks to Docker via various
// os/exec tricks.
comm := &Communicator{
- ContainerId: containerId,
+ ContainerID: containerId,
HostDir: tempDir,
- ContainerDir: "/packer-files",
+ ContainerDir: config.ContainerDir,
Version: version,
Config: config,
}