mirror of
https://github.com/newnius/YAO-docs.git
synced 2024-07-06 05:15:18 +00:00
14 lines
294 B
Bash
14 lines
294 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
docker run \
|
||
|
|
--gpus all \
|
||
|
|
--name yao-optimizer \
|
||
|
|
--hostname yao-optimizer \
|
||
|
|
--network yao-net \
|
||
|
|
--network-alias yao-optimizer \
|
||
|
|
-d \
|
||
|
|
--restart always \
|
||
|
|
--detach=true \
|
||
|
|
--mount type=bind,source=/etc/localtime,target=/etc/localtime,readonly \
|
||
|
|
quickdeploy/yao-optimizer:dev
|