Updated docker's default config to use regular bourne shell instead of bourne again. Closes #6920.
This commit is contained in:
parent
65b513fdfc
commit
310ea6c006
|
@ -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}}", "/bin/sh"}
|
||||
}
|
||||
|
||||
// Default Pull if it wasn't set
|
||||
|
|
Loading…
Reference in New Issue