-
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
.bashrc
file 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 + d
to detach on tmux -
tmux attach
to reattach on tmux