Rename the docker run function

This is a remnant of when there were multiple versions.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2017-06-21 11:10:38 -07:00
parent c9d8739b32
commit 4401e7d0f0
2 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ import (
"golang.org/x/net/context"
)
func dockerRunInput(input io.Reader, args ...string) ([]byte, error) {
func dockerRun(input io.Reader, args ...string) ([]byte, error) {
log.Debugf("docker run (input): %s", strings.Join(args, " "))
docker, err := exec.LookPath("docker")
if err != nil {