Updated docker's default config to use regular bourne shell instead of bourne again. Closes #6920.

This commit is contained in:
Ali Rizvi-Santiago 2018-12-04 18:28:48 -06:00
parent 65b513fdfc
commit 310ea6c006
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", "{{.Image}}", "/bin/bash"}
c.RunCommand = []string{"-d", "-i", "-t", "{{.Image}}", "/bin/sh"}
}
// Default Pull if it wasn't set