Merge pull request #7104 from hashicorp/revert_docker_changes

revert changes to docker entrypoint; since this is a backwards-breaki…
This commit is contained in:
Adrien Delorme 2018-12-13 10:23:18 +01:00 committed by GitHub
commit 47257c0d07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) {
// Defaults
if len(c.RunCommand) == 0 {
c.RunCommand = []string{"-d", "-i", "-t", "--entrypoint=/bin/sh", "--", "{{.Image}}"}
c.RunCommand = []string{"-d", "-i", "-t", "{{.Image}}", "/bin/bash"}
}
// Default Pull if it wasn't set