Signed-off-by: jortkoopmans <jort@jabo-solutions.eu>
This commit is contained in:
jortkoopmans
2020-11-25 18:26:22 +01:00
parent a18365c908
commit 5cfbe0b78e
102 changed files with 1710 additions and 853 deletions

View File

@@ -4,9 +4,7 @@ from test.python.docker import constant
def run_top_container(client: DockerClient):
c = client.containers.create(
constant.ALPINE, command="top", detach=True, tty=True, name="top"
)
c = client.containers.create(constant.ALPINE, command="top", detach=True, tty=True, name="top")
c.start()
return c.id