You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# IMPORTANT: Optionally install Nvidia drivers for improved simulator performance with Nvidia GPUs.
53
-
# To do this you must
54
-
# 1. Uncomment the ENV and RUN entries below
55
-
# 2. Replace the 'nvidia-driver-555' apt package with the Nvidia driver version on your host, e.g. nvidia-driver-535, nvidia-driver-555. Use nvidia-smi on your host to determine the driver version.
56
-
# After rebuilding via `moveit_pro build` verify the drivers are active in your container by running `nvidia_smi` inside of `moveit_pro shell`.
57
-
# ENV DEBIAN_FRONTEND=noninteractive
58
-
# RUN apt update && apt install -y software-properties-common
59
-
# RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
# Docker Compose file that will be merged with /opt/moveit_pro/docker-compose.yaml.
2
+
# For more details on how merging works, see https://docs.docker.com/compose/how-tos/multiple-compose-files/merge/#merging-rules.
3
+
4
+
# Services that are listed under `/opt/moveit_pro/docker-compose.yaml` are mirrored here for merging.
5
+
# Feel free to remove services here that are unmodified.
6
+
services:
7
+
# The base image that all MoveIt Pro services extend off of. Builds the user workspace.
8
+
base:
9
+
build:
10
+
# List any arguments for building the user workspace here.
11
+
args:
12
+
# IMPORTANT: Optionally install Nvidia drivers for improved simulator performance with Nvidia GPUs.
13
+
# To do this you must
14
+
# 1. Uncomment the BASE and NVIDIA_DRIVER_PACKAGE build args below
15
+
# 2. Replace the 'nvidia-driver-555' apt package with the Nvidia driver version on your host, e.g. nvidia-driver-535, nvidia-driver-555. Use nvidia-smi on your host to determine the driver version.
16
+
# After rebuilding via `moveit_pro build` verify the drivers are active in your container by running `nvidia_smi` inside of `moveit_pro shell`.
17
+
# - BASE=nvidia
18
+
# - NVIDIA_DRIVER_PACKAGE=nvidia-driver-555
19
+
20
+
# Starts the MoveIt Pro Agent and the Bridge between the Agent and the Web UI.
21
+
agent_bridge:
22
+
23
+
# Starts the robot drivers.
24
+
drivers:
25
+
26
+
# Starts the web UI frontend.
27
+
web_ui:
28
+
29
+
# Developer specific configuration when running `moveit_pro dev`.
0 commit comments