We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b26e053 commit 37303bbCopy full SHA for 37303bb
docker/docker.go
@@ -93,7 +93,7 @@ func IsDockerRunning() (running bool) {
93
// as well as arguments to pass to the image's entrypoint.
94
func RunAnonymousContainer(image string, extraDockerArgs []string, entrypointArgs []string) {
95
baseDockerArgs := []string{"run", "--rm"}
96
- imageDockerArgs := []string{"-t", image}
+ imageDockerArgs := []string{image}
97
out := exec.Command(
98
"docker",
99
util.JoinStringSlices(
0 commit comments