|
|
@ -1,10 +1,20 @@ |
|
|
|
#!/bin/bash |
|
|
|
#!/bin/bash |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" |
|
|
|
|
|
|
|
cd $DIR |
|
|
|
|
|
|
|
|
|
|
|
# expose X to the container |
|
|
|
# expose X to the container |
|
|
|
xhost +local:root |
|
|
|
xhost +local:root |
|
|
|
|
|
|
|
|
|
|
|
docker pull ghcr.io/commaai/openpilot-sim:latest |
|
|
|
docker pull ghcr.io/commaai/openpilot-sim:latest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OPENPILOT_DIR="/openpilot" |
|
|
|
|
|
|
|
if ! [[ -z "$MOUNT_OPENPILOT" ]] |
|
|
|
|
|
|
|
then |
|
|
|
|
|
|
|
EXTRA_ARGS="-v $PWD/../..:/root/openpilot -e PYTHONPATH=/root/openpilot:$PYTHONPATH" |
|
|
|
|
|
|
|
OPENPILOT_DIR="/root/openpilot" |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
docker run --net=host\ |
|
|
|
docker run --net=host\ |
|
|
|
--name openpilot_client \ |
|
|
|
--name openpilot_client \ |
|
|
|
--rm \ |
|
|
|
--rm \ |
|
|
@ -15,5 +25,7 @@ docker run --net=host\ |
|
|
|
--shm-size 1G \ |
|
|
|
--shm-size 1G \ |
|
|
|
-e DISPLAY=$DISPLAY \ |
|
|
|
-e DISPLAY=$DISPLAY \ |
|
|
|
-e QT_X11_NO_MITSHM=1 \ |
|
|
|
-e QT_X11_NO_MITSHM=1 \ |
|
|
|
|
|
|
|
-w "$OPENPILOT_DIR/tools/sim" \ |
|
|
|
|
|
|
|
$EXTRA_ARGS \ |
|
|
|
commaai/openpilot-sim:latest \ |
|
|
|
commaai/openpilot-sim:latest \ |
|
|
|
/bin/bash -c "cd /openpilot/tools/sim && ./tmux_script.sh $*" |
|
|
|
/bin/bash -c "./tmux_script.sh $*" |
|
|
|