Skip to content

Commit 69e67a2

Browse files
committed
Don't need -it for docker run here
1 parent 8444a28 commit 69e67a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/registry/test_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def registry():
1616
registry_image = "registry:3.0.0-rc.3"
1717
subprocess.check_call(["docker", "pull", registry_image])
1818
cmd = [
19-
"docker", "run", "-it", "-p", f"{port}:5000", registry_image
19+
"docker", "run", "-p", f"{port}:5000", registry_image
2020
]
2121
proc = subprocess.Popen(cmd)
2222
health_url = f'http://localhost:{port}/v2'

0 commit comments

Comments
 (0)