Merge pull request #7069 from arizvisa/GH-6920

Updated docker's default config to use regular bourne shell instead of bourne again.
pull/7092/head
Megan Marsh 8 years ago committed by GitHub
commit 32f226eda0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save