add full path of docker image

This commit is contained in:
jordihasianta
2022-11-18 20:36:33 +07:00
parent a8d4b21929
commit b3e23aa661

View File

@@ -131,8 +131,8 @@ def docker_command_dec(fn):
def inner(*args, **kwargs):
wsl_cmd, path = wsllize((args[1]))
check_docker_model_exist(wsl_cmd, "dbm-openface")
openface_repo = "opendbmteam/dbm-openface"
check_docker_model_exist(wsl_cmd, openface_repo)
create_docker = wsl_cmd + [
"docker",
@@ -140,7 +140,7 @@ def docker_command_dec(fn):
"-ti",
"--name",
"dbm_container",
"dbm-openface",
openface_repo,
"bash",
]