Unverified Commit b759fd2e authored by kladko's avatar kladko

SKALE-2077 Fixed Naming

parent 049fef02
...@@ -53,6 +53,9 @@ assert subprocess.call(["docker", "image", "inspect", FULL_IMAGE_NAME]) == 0; ...@@ -53,6 +53,9 @@ assert subprocess.call(["docker", "image", "inspect", FULL_IMAGE_NAME]) == 0;
completedProcess = subprocess.run(["docker", "run", "-v", topDir + "/sgx_data:/usr/src/sdk/sgx_data","-t", completedProcess = subprocess.run(["docker", "run", "-v", topDir + "/sgx_data:/usr/src/sdk/sgx_data","-t",
"--name", "sgxwallet", "--network=host", "skalenetwork/" + IMAGE_NAME +":" + TAG_POSTFIX, "-t"]) "--name", "sgxwallet", "--network=host", "skalenetwork/" + IMAGE_NAME +":" + TAG_POSTFIX, "-t"])
print(completedProcess.stdout)
print(completedProcess.stderr)
assert completedProcess.returncode == 0;
assert subprocess.call(["docker", "kill", "sgxwallet"]) == 0 assert subprocess.call(["docker", "kill", "sgxwallet"]) == 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment