Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion stretch3_ws/.gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Visual Studio Code
.vscode

# ROS2 basic directories
# ROS basic directories
/build
/install
/devel
/log
/install

# Hard Links
/docker/modules
2 changes: 1 addition & 1 deletion stretch3_ws/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ COPY --chown=$USERNAME:$USERNAME \
.bashrc /home/$USERNAME/.bashrc
# TODO: Copy additional files here
ENTRYPOINT []
CMD ["/bin/bash"]
CMD ["/bin/bash"]
13 changes: 3 additions & 10 deletions stretch3_ws/docker/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,7 @@ services:
mkdir -p /isaac-sim/{logs,data,documents} &&
mkdir -p /isaac-sim/standalone/cache/ov &&
mkdir -p /isaac-sim/standalone/{logs,data} &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/cache &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/cache/{kit,ov,pip,glcache,computecache} &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/{logs,data,documents} &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/standalone &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/standalone/cache &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/standalone/cache/ov &&
chown ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim/standalone/{logs,data}
chown -R ${USER_UID:-1000}:${USER_UID:-1000} /isaac-sim
"
volumes:
- isaac-sim-cache:/isaac-sim
Expand All @@ -43,9 +36,9 @@ services:
# TODO: Set to "YES" if using Isaac ROS or set to "" if not using Isaac ROS
# ISAAC_ROS: ""
# TODO: Set to "YES" if using Cartographer or set to "" if not using Cartographer
CARTOGRAPHER: "YES"
# CARTOGRAPHER: ""
# TODO: Set to "YES" if using RTAB-Map or set to "" if not using RTAB-Map
RTABMAP: "YES"
# RTABMAP: ""
cache_from:
- j3soon/ros2-stretch3-ws:buildcache-amd64
- j3soon/ros2-stretch3-ws:buildcache-arm64
Expand Down
Loading