From e3ad666fbcba370e533517eac40acc9531134c7b Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 10 Feb 2026 18:42:53 -0600 Subject: [PATCH] added --symlink-install --- docker-compose.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c6fbffb..08943d8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: container_name: moveit2_container privileged: true network_mode: host - command: ["bash", "-c", "colcon build && source /ros2_ws/install/setup.bash && exec bash"] + command: ["bash", "-c", "colcon build --symlink-install && source /ros2_ws/install/setup.bash && exec bash"] volumes: - ./:/ros2_ws - /tmp/.X11-unix:/tmp/.X11-unix @@ -18,7 +18,7 @@ services: container_name: moveit2_container privileged: true network_mode: host - command: /bin/bash + command: ["bash", "-c", "colcon build --symlink-install && source /ros2_ws/install/setup.bash && exec bash"] deploy: resources: reservations: @@ -27,8 +27,10 @@ services: count: 1 capabilities: [gpu] volumes: + - ./:/ros2_ws - /tmp/.X11-unix:/tmp/.X11-unix - $XAUTHORITY:/root/.Xauthority + working_dir: /ros2_ws environment: QT_X11_NO_MITSHM: 1 DISPLAY: $DISPLAY