Merge pull request #3088 from dokku/silence-port-output

Silence port retrieval stderr
This commit is contained in:
Jose Diaz-Gonzalez
2018-03-02 11:11:49 -05:00
committed by GitHub

View File

@@ -2,6 +2,7 @@ package network
import (
"fmt"
"io/ioutil"
"path/filepath"
"strconv"
"strings"
@@ -129,7 +130,9 @@ func GetContainerPort(appName, procType string, isHerokuishContainer bool, conta
break
}
}
b, err := sh.Command("docker", "port", containerID, port).Output()
cmd := sh.Command("docker", "port", containerID, port)
cmd.Stderr = ioutil.Discard
b, err := cmd.Output()
if err == nil {
port = strings.Split(string(b[:]), ":")[1]
}