Skip to content

Commit 3a06fa2

Browse files
committed
Merge pull request #43 from alixaxel/feature/output-streams
forward stderr/stdout for issue #42
2 parents b26e053 + 37303bb commit 3a06fa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func IsDockerRunning() (running bool) {
9393
// as well as arguments to pass to the image's entrypoint.
9494
func RunAnonymousContainer(image string, extraDockerArgs []string, entrypointArgs []string) {
9595
baseDockerArgs := []string{"run", "--rm"}
96-
imageDockerArgs := []string{"-t", image}
96+
imageDockerArgs := []string{image}
9797
out := exec.Command(
9898
"docker",
9999
util.JoinStringSlices(

0 commit comments

Comments
 (0)