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.
2 parents b26e053 + 37303bb commit 3a06fa2Copy full SHA for 3a06fa2
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