revert changes to docker entrypoint; since this is a backwards-breaking change it needs to wait for a minor release

pull/7104/head
Megan Marsh 7 years ago
parent 279949ddcc
commit 2a79d64ae0

@ -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

Loading…
Cancel
Save