We have now released v0.3.0! Please use the latest version for the best experience.

Running an example with Docker#

From the root of the orbit repository, the docker directory contains all the Docker relevant files. These include the three files (Dockerfile, docker-compose.yaml, .env) which are used by Docker, and an additional script that we use to interface with them, container.sh.

In this tutorial, we will learn how to use the Orbit Docker container for development. For a detailed description of the Docker setup, including installation and obtaining access to an Isaac Sim image, please reference the Docker Guide. For a description of Docker in general, please refer to their official documentation.

Building the Container#

To build the Orbit container from the root of the Orbit repository, we will run the following:

./docker/container.sh start

The terminal will first pull the base IsaacSim image, build the Orbit image’s additional layers on top of it, and run the Orbit container. This should take several minutes upon the first build but will be shorter in subsequent runs as Docker’s caching prevents repeated work. If we run the command docker container ls on the terminal, the output will list the containers that are running on the system. If everything has been set up correctly, a container with the NAME orbit should appear, similar to below:

CONTAINER ID   IMAGE         COMMAND   CREATED           STATUS         PORTS     NAMES
483d1d5e2def   orbit         "bash"    30 seconds ago   Up 30 seconds             orbit

Once the container is up and running, we can enter it from our terminal.

./docker/container.sh enter

On entering the Orbit container, we are in the terminal as the superuser, root. This environment contains a copy of the Orbit repository, but also has access to the directories and libraries of Isaac Sim. We can run experiments from this environment using a few convenient aliases that have been put into the root .bashrc. For instance, we have made the orbit.sh script usable from anywhere by typing its alias orbit.

Additionally in the container, we have bind mounted the orbit/source directory from the host machine. This means that if we modify files under this directory from an editor on the host machine, the changes are reflected immediately within the container without requiring us to rebuild the Docker image.

We will now run a sample script from within the container to demonstrate how to extract artifacts from the Orbit Docker container.

The Code#

The tutorial corresponds to the log_time.py script in the orbit/source/standalone/tutorials/00_sim directory.

Code for log_time.py
 1# Copyright (c) 2022-2024, The ORBIT Project Developers.
 2# All rights reserved.
 3#
 4# SPDX-License-Identifier: BSD-3-Clause
 5
 6"""
 7This script demonstrates how to generate log outputs while the simulation plays.
 8It accompanies the tutorial on docker usage.
 9
10.. code-block:: bash
11
12    # Usage
13    ./orbit.sh -p source/standalone/tutorials/00_sim/log_time.py
14
15"""
16
17"""Launch Isaac Sim Simulator first."""
18
19
20import argparse
21import os
22
23from omni.isaac.orbit.app import AppLauncher
24
25# create argparser
26parser = argparse.ArgumentParser(description="Tutorial on creating logs from within the docker container.")
27# append AppLauncher cli args
28AppLauncher.add_app_launcher_args(parser)
29# parse the arguments
30args_cli = parser.parse_args()
31# launch omniverse app
32app_launcher = AppLauncher(args_cli)
33simulation_app = app_launcher.app
34
35"""Rest everything follows."""
36
37from omni.isaac.orbit.sim import SimulationCfg, SimulationContext
38
39
40def main():
41    """Main function."""
42    # Specify that the logs must be in logs/docker_tutorial
43    log_dir_path = os.path.join("logs", "docker_tutorial")
44    # In the container, the absolute path will be
45    # /workspace/orbit/logs/docker_tutorial, because
46    # all python execution is done through /workspace/orbit/orbit.sh
47    # and the calling process' path will be /workspace/orbit
48    log_dir_path = os.path.abspath(log_dir_path)
49    if not os.path.isdir(log_dir_path):
50        os.mkdir(log_dir_path)
51    print(f"[INFO] Logging experiment to directory: {log_dir_path}")
52
53    # Initialize the simulation context
54    sim_cfg = SimulationCfg(dt=0.01, substeps=1)
55    sim = SimulationContext(sim_cfg)
56    # Set main camera
57    sim.set_camera_view([2.5, 2.5, 2.5], [0.0, 0.0, 0.0])
58
59    # Play the simulator
60    sim.reset()
61    # Now we are ready!
62    print("[INFO]: Setup complete...")
63
64    # Prepare to count sim_time
65    sim_dt = sim.get_physics_dt()
66    sim_time = 0.0
67
68    # Open logging file
69    with open(os.path.join(log_dir_path, "log.txt"), "w") as log_file:
70        # Simulate physics
71        while simulation_app.is_running():
72            log_file.write(f"{sim_time}" + "\n")
73            # perform step
74            sim.step()
75            sim_time += sim_dt
76
77
78if __name__ == "__main__":
79    # run the main function
80    main()
81    # close sim app
82    simulation_app.close()

The Code Explained#

The Orbit Docker container has several volumes to facilitate persistent storage between the host computer and the container. One such volume is the /workspace/orbit/logs directory. The log_time.py script designates this directory as the location to which a log.txt should be written:

    # Specify that the logs must be in logs/docker_tutorial
    log_dir_path = os.path.join("logs", "docker_tutorial")
    # In the container, the absolute path will be
    # /workspace/orbit/logs/docker_tutorial, because
    # all python execution is done through /workspace/orbit/orbit.sh
    # and the calling process' path will be /workspace/orbit
    log_dir_path = os.path.abspath(log_dir_path)
    if not os.path.isdir(log_dir_path):
        os.mkdir(log_dir_path)
    print(f"[INFO] Logging experiment to directory: {log_dir_path}")

As the comments note, os.path.abspath() will prepend /workspace/orbit because in the Docker container all python execution is done through /workspace/orbit/orbit.sh. The output will be a file, log.txt, with the sim_time written on a newline at every simulation step:

    # Prepare to count sim_time
    sim_dt = sim.get_physics_dt()
    sim_time = 0.0

    # Open logging file
    with open(os.path.join(log_dir_path, "log.txt"), "w") as log_file:
        # Simulate physics
        while simulation_app.is_running():
            log_file.write(f"{sim_time}" + "\n")
            # perform step
            sim.step()
            sim_time += sim_dt

Executing the Script#

We will execute the script to produce a log, adding a --headless flag to our execution to prevent a GUI:

orbit -p source/standalone/tutorials/00_sim/log_time.py --headless

Now log.txt will have been produced at /workspace/orbit/logs/docker_tutorial. If we exit the container by typing exit, we will return to orbit/docker in our host terminal environment. We can then enter the following command to retrieve our logs from the Docker container and put them on our host machine:

./container.sh copy

We will see a terminal readout reporting the artifacts we have retrieved from the container. If we navigate to /orbit/docker/artifacts/logs/docker_tutorial, we will see a copy of the log.txt file which was produced by the script above.

Each of the directories under artifacts corresponds to Docker volumes mapped to directories within the container and the container.sh copy command copies them from those volumes to these directories.

We could return to the Orbit Docker terminal environment by running container.sh enter again, but we have retrieved our logs and wish to go inspect them. We can stop the Orbit Docker container with the following command:

./container.sh stop

This will bring down the Docker Orbit container. The image will persist and remain available for further use, as will the contents of any volumes. If we wish to free up the disk space taken by the image, (~20.1GB), and do not mind repeating the build process when we next run ./container.sh start, we may enter the following command to delete the orbit image:

docker image rm orbit

A subsequent run of docker image ls` will show that the image tagged orbit is now gone. We can repeat the process for the underlying NVIDIA container if we wish to free up more space. If a more powerful method of freeing resources from Docker is desired, please consult the documentation for the docker prune commands.