This example downloads a prebuilt ROS 1 Noetic Docker archive from a public OneDrive/SharePoint link, loads it into Docker as:
ros:noeticArchive size: about 1.27 GB
Supported JetPack/L4T versions:
- JetPack 6.2 -> L4T 36.4.0
- JetPack 6.2.1 -> L4T 36.4.3
- JetPack 6.1 -> L4T 36.4.4
PyPI (recommended):
pip install jetson-examplesGitHub (developer):
git clone https://github.com/Seeed-Projects/jetson-examples
cd jetson-examples
pip install .Launch an interactive shell in the container:
reComputer run ros1-jp6The example will:
- Download the Docker archive from SharePoint if it is not cached
- Run
docker load -ito import the image - Start the container with Jetson-friendly Docker flags
The SharePoint share link is a normal :u:/... public link. The downloader automatically appends download=1, so you do not need to manually rewrite the URL.
Cache location:
~/.cache/jetson-examples/ros1-jp6/ros-noetic-jp6.tarOnly prepare the image and skip container startup:
ROS1_JP6_SKIP_RUN=1 reComputer run ros1-jp6Run a non-interactive ROS smoke test:
ROS1_JP6_COMMAND='source /opt/ros/noetic/setup.bash && rosversion -d' reComputer run ros1-jp6After the image is loaded locally, save it back to a tar archive:
ROS1_JP6_SKIP_RUN=1 \
ROS1_JP6_SAVE_PATH=/tmp/ros-noetic-jp6.tar \
reComputer run ros1-jp6This is equivalent to:
docker save -o /tmp/ros-noetic-jp6.tar ros:noeticYou can override the default behavior with these variables:
ROS1_JP6_SHARE_URL
ROS1_JP6_ARCHIVE_NAME
ROS1_JP6_CACHE_DIR
ROS1_JP6_IMAGE
ROS1_JP6_CONTAINER_NAME
ROS1_JP6_COMMAND
ROS1_JP6_SKIP_RUN
ROS1_JP6_SAVE_PATHOnly remove the container:
reComputer clean ros1-jp6The local image cache and the downloaded archive are kept.