Compare commits

..

No commits in common. "d90f68ce1ae5cb3645a9bd6ae434295413d347ca" and "29d439e82a0a5ef12520f0d20e0e19d58dec8b6a" have entirely different histories.

View file

@ -58,8 +58,10 @@ class ImageApi:
)
def drun(self, name: str):
self.execution_api.execute(
f'docker run -it --entrypoint="" {name} /bin/bash'
run(
f'docker run -it --entrypoint="" {name} /bin/bash',
shell=True,
check=True,
)
def dockerhub_login(self, username: str, password: str):