From b3e23aa661d093e78c94adf61519a8114b47ff28 Mon Sep 17 00:00:00 2001 From: jordihasianta Date: Fri, 18 Nov 2022 20:36:33 +0700 Subject: [PATCH] add full path of docker image --- opendbm/api_lib/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opendbm/api_lib/util.py b/opendbm/api_lib/util.py index bf40b771..f443574b 100644 --- a/opendbm/api_lib/util.py +++ b/opendbm/api_lib/util.py @@ -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", ]