Skip to content

Commit

Permalink
Added config folder for issacsim so the default bookmark in the resou…
Browse files Browse the repository at this point in the history
…rce is the airlab server (#98)
  • Loading branch information
smash0190 authored Oct 9, 2024
1 parent 23ab4e3 commit badf630
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
24 changes: 15 additions & 9 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ services:
# ROS2 stuff
- RMW_IMPLEMENTATION=rmw_fastrtps_cpp
- FASTRTPS_DEFAULT_PROFILES_FILE=/isaac-sim/fastdds.xml
deploy: # let it use the GPU
deploy:
# let it use the GPU
resources:
reservations:
devices:
- driver: nvidia # https://stackoverflow.com/a/70761193
count: 1
capabilities: [gpu]
capabilities: [ gpu ]
volumes:
# display
- $HOME/.Xauthority:/root/.Xauthority
Expand All @@ -54,6 +55,7 @@ services:
- ./extras/kit-app-template/source/extensions/:/root/Documents/Kit/shared/exts/
- ./extras:/extras:rw
- ./extras/inputrc:/etc/inputrc
- ./extras/config:/root/.nvidia-omniverse/config:rw

# ==============================================================================
ground-control-station:
Expand All @@ -69,14 +71,16 @@ services:
environment:
- DISPLAY
- QT_X11_NO_MITSHM=1
deploy: # let it use the GPU
deploy:
# let it use the GPU
resources:
reservations:
devices:
- driver: nvidia # https://stackoverflow.com/a/70761193
count: 1
capabilities: [gpu]
ports: # for ssh
capabilities: [ gpu ]
ports:
# for ssh
- 2222:22
volumes:
# display stuff
Expand Down Expand Up @@ -110,14 +114,16 @@ services:
environment:
- DISPLAY
- QT_X11_NO_MITSHM=1
deploy: # let it use the GPU
deploy:
# let it use the GPU
resources:
reservations:
devices:
- driver: nvidia # https://stackoverflow.com/a/70761193
count: 1
capabilities: [gpu]
ports: # for ssh, starting from 2223-2243 on the host port all map to 22 in the container. Assumes no more than 21 robots
capabilities: [ gpu ]
ports:
# for ssh, starting from 2223-2243 on the host port all map to 22 in the container. Assumes no more than 21 robots
- "2223-2243:22"
volumes:
# display stuff
Expand Down Expand Up @@ -151,4 +157,4 @@ networks:
ipam:
driver: default
config:
- subnet: 172.31.0.0/24
- subnet: 172.31.0.0/24
3 changes: 3 additions & 0 deletions docker/extras/config/omniverse.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

[bookmarks]
"AirLab Nucleus Server" = "omniverse://airlab-storage.andrew.cmu.edu:8443"

0 comments on commit badf630

Please sign in to comment.