-
Notifications
You must be signed in to change notification settings - Fork 5
Docker tips and DGX
Saurav Agarwal edited this page Oct 2, 2023
·
1 revision
- Login to the server via
ssh - Copy the following to the end of your
.bashrcfile for easy navigation:
export RAID_HOME=/raid0/docker-raid/${USER}
export COVERAGECONTROL_WS=${RAID_HOME}/CoverageControl_ws
export LD_LIBRARY_PATH="${COVERAGECONTROL_WS}/install/lib/:${LD_LIBRARY_PATH}" - Logout and login again
- Go to your raid0 directory:
cd ${RAID_HOME} - Follow Installation for Docker
- You can exit the container with
ctrl+d
- Login to the server via
ssh -
tmux# or screen -
docker start gnn-$USER# starts stopped docker -
docker exec -it gnn-$USER bash# execute bash inside docker - Execute your scripts
python <script.py> -
ctrl+b + dto detach on tmux -
tmux attachto reattach on tmux