1
0
mirror of https://github.com/newnius/YAO-agent.git synced 2025-06-07 13:51:56 +00:00

all in one

This commit is contained in:
Newnius 2019-12-26 19:06:01 +08:00
parent caccd74462
commit cd789c386a

View File

@ -131,7 +131,7 @@ class MyHandler(BaseHTTPRequestHandler):
try:
script = " ".join([
"docker run",
"--gpus '\\'\\\"device=" + docker_gpus + "\\\"$'\\'",
"--gpus '\"device=" + docker_gpus + "\"'",
"--detach=True",
"--hostname " + docker_name,
"--network " + docker_network,
@ -143,7 +143,7 @@ class MyHandler(BaseHTTPRequestHandler):
docker_cmd
])
print('sh -c ' + '\'' + script + '\'')
print(script)
client = docker.from_env()
container = client.containers.get('yao-agent-helper')