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

pull/7069/head
Ali Rizvi-Santiago 8 years ago
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…
Cancel
Save