builder/docker: allow DOCKER_HOST

This commit is contained in:
Mitchell Hashimoto 2014-10-27 16:49:39 -07:00
parent feba256ee5
commit 607f7214b5
2 changed files with 2 additions and 5 deletions

View File

@ -7,6 +7,8 @@ FEATURES:
IMPROVEMENTS:
* builder/amazon/all: Support new AWS Frankfurt region.
* builder/docker: Allow remote `DOCKER_HOST`, which works as long as
volumes work. [GH-1594]
BUG FIXES:

View File

@ -258,10 +258,5 @@ func (d *DockerDriver) Verify() error {
return err
}
if v := os.Getenv("DOCKER_HOST"); v != "" {
return fmt.Errorf(
"DOCKER_HOST cannot be set with the Packer Docker builder.")
}
return nil
}