Compare commits
No commits in common. "d90f68ce1ae5cb3645a9bd6ae434295413d347ca" and "29d439e82a0a5ef12520f0d20e0e19d58dec8b6a" have entirely different histories.
d90f68ce1a
...
29d439e82a
1 changed files with 4 additions and 2 deletions
|
@ -58,8 +58,10 @@ class ImageApi:
|
||||||
)
|
)
|
||||||
|
|
||||||
def drun(self, name: str):
|
def drun(self, name: str):
|
||||||
self.execution_api.execute(
|
run(
|
||||||
f'docker run -it --entrypoint="" {name} /bin/bash'
|
f'docker run -it --entrypoint="" {name} /bin/bash',
|
||||||
|
shell=True,
|
||||||
|
check=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
def dockerhub_login(self, username: str, password: str):
|
def dockerhub_login(self, username: str, password: str):
|
||||||
|
|
Loading…
Reference in a new issue