## Step 1. Download required docker image
# CUDA:10.1 - Note that it is not compatible with the latest GPUs (e.g., RTX30xx)
docker pull jshyunaa/sgt:cu101
# CUDA:11.3
docker pull jshyunaa/sgt:cu113
## Step 2. Create docker container
[Template]
docker run --rm -it -d --shm-size=<mem> --gpus '"device=<device-indices>"' -v <host_root_dir>:<container_root_dir>\
--name <container_name> -p <ssh_port>:22 -p <log_port>:8081 jshyunaa/sgt:<version>
[Example]
docker run --rm -it -d --shm-size=16G --gpus '"device=0,1"' -v /media/ssd1/users/jshyun/:/root --name sgt -p 3000:22 -p 3001:8081 jshyunaa/sgt:cu113
## Step 3. Access to the created container
docker exec -it <container_name> /bin/bash
cd <work_dir>