Dont reference python version on docker instructions

pull/26/head
Guillermo Rodriguez 2023-10-07 11:04:57 -03:00
parent 342dd9ac1c
commit b7b267a71b
No known key found for this signature in database
GPG Key ID: EC3AB66D5D83B392
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ docker run \
--network host \
--name skynet-worker \
--mount type=bind,source="$(pwd)",target=/root/target \
guilledk/skynet:runtime-cuda-py310 \
guilledk/skynet:runtime-cuda \
skynet run dgpu
# run worker with specific gpu
@ -74,6 +74,6 @@ docker run \
--network host \
--name skynet-worker-1 \
--mount type=bind,source="$(pwd)",target=/root/target \
guilledk/skynet:runtime-cuda-py310 \
guilledk/skynet:runtime-cuda \
skynet run dgpu
```