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

This commit is contained in:
Megan Marsh 2018-12-12 15:29:33 -08:00
parent 279949ddcc
commit 2a79d64ae0
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) {
// Defaults // Defaults
if len(c.RunCommand) == 0 { 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 // Default Pull if it wasn't set