...
Download the packages required for Docker operation:
Open Docker Desktop.Make sure that the Docker Desktop running icon is displayed in the system tray of the taskbar. You can also verify that it is running in the Docker Desktop interface (look for the Engine running icon in the bottom-left corner).
Upload the TIY Docker image:
Code Block |
---|
docker pull u7665/tiyaxxonsoft/train_it_yourself:v1.3.2228 |
Info | ||
---|---|---|
| ||
The following commands are for Windows OS; for Linux OS, you can use the same commands with addition of sudo at the beginning of each of them. |
Code Block |
---|
docker run --rm -p 5000:5000 --gpus all --privileged u7665/tiy:v1.3.2228 |
Parameter | Description |
---|---|
--rm | Automatically removes the container after it stops running |
--gpus all | Grants the container access to all GPUs. To use specific GPUs, their IDs must be specified |
--privileged | Grants the container root access to the host. For security purposes, it is recommended to use the minimum necessary privileges. The full list of parameters can be found in the Running containers + GPU support section on the official Docker website |
...
Code Block |
---|
docker ps |
Code Block |
---|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e811e3c07661 u7665/tiy:v1.3.2228 "/bin/sh -c 'python3…" 3 hours ago Up 3 hours 0.0.0.0:5000->5000/tcp, :::5000->5000/tcp kind_proskuriakova |
Code Block |
---|
docker stop %CONTAINER ID% |
Code Block |
---|
sudo service docker restart |