forked from justagist/panda_simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_docker.sh
executable file
·50 lines (42 loc) · 1.61 KB
/
run_docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /bin/bash
ROOT_DIR="$(cd $( dirname ${BASH_SOURCE[0]} ) && pwd)"
command_exists () {
type "$1" &> /dev/null ;
}
distro_type="noetic"
# path where the catkin ws will be stored for the docker to use
HOST_WS_PATH="$HOME/.panda_sim_${distro_type}_ws"
if command_exists nvidia-docker; then
extra_params="--runtime nvidia"
xdocker="nvidia-docker"
echo -e "\t[INFO] nvidia-docker exists"
else
xdocker="docker"
extra_params=""
echo -e "\t[INFO] nvidia-docker does not exist (falling back to docker). Rviz and Gazebo most likely will not work!"
fi
IMAGE_NAME=`docker images -f "label=PS_VERSION=v1.0.0-${distro_type}" -q`
IMAGE_NAME=($IMAGE_NAME dummy) # make it into list for dealing with single and multiple entry from above output
echo -e "\n\t[STATUS] Loading image: ${IMAGE_NAME[0]} ..."
if ! [ -d "${HOST_WS_PATH}/src" ]; then
mkdir -p ${HOST_WS_PATH}/src
fi
$xdocker run -it \
--user=$(id -u) \
--env="DISPLAY" \
--network="host" \
--privileged \
--env="QT_X11_NO_MITSHM=1" \
--volume="/home/$USER:/home/$USER" \
--volume="/etc/group:/etc/group:ro" \
--volume="/etc/passwd:/etc/passwd:ro" \
--volume="/etc/shadow:/etc/shadow:ro" \
--volume="/etc/sudoers.d:/etc/sudoers.d:ro" \
--volume="/tmp/.X11-unix:/tmp/.X11-unix:rw" \
--volume="${HOST_WS_PATH}:/home/$USER/panda_sim_ws" \
--volume="${ROOT_DIR}:/home/$USER/panda_sim_ws/src/panda_simulator" ${extra_params} \
--workdir="/home/$USER/panda_sim_ws/" \
${IMAGE_NAME[0]} \
bash
rm -rf $HOME/panda_sim_ws
echo -e "\nBye the byee!\n"