| Running an example with Docker | |
| ============================== | |
| From the root of the Isaac Lab 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.py**. | |
| In this tutorial, we will learn how to use the Isaac Lab 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 :ref:`deployment-docker`. For a description | |
| of Docker in general, please refer to `their official documentation <https://docs.docker.com/get-started/overview/>`_. | |
| Building the Container | |
| ~~~~~~~~~~~~~~~~~~~~~~ | |
| To build the Isaac Lab container from the root of the Isaac Lab repository, we will run the following: | |
| .. code-block:: console | |
| python docker/container.py start | |
| The terminal will first pull the base IsaacSim image, build the Isaac Lab image's additional layers on top of it, and run the Isaac Lab container. | |
| This should take several minutes for 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`` **isaac-lab-base** should appear, similar to below: | |
| .. code-block:: console | |
| CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES | |
| 483d1d5e2def isaac-lab-base "bash" 30 seconds ago Up 30 seconds isaac-lab-base | |
| Once the container is up and running, we can enter it from our terminal. | |
| .. code-block:: console | |
| python docker/container.py enter | |
| On entering the Isaac Lab container, we are in the terminal as the superuser, ``root``. This environment contains a copy of the | |
| Isaac Lab 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 **isaaclab.sh** script | |
| usable from anywhere by typing its alias ``isaaclab``. | |
| Additionally in the container, we have `bind mounted`_ the ``IsaacLab/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 Isaac Lab Docker container. | |
| The Code | |
| ~~~~~~~~ | |
| The tutorial corresponds to the ``log_time.py`` script in the ``IsaacLab/scripts/tutorials/00_sim`` directory. | |
| .. dropdown:: Code for log_time.py | |
| :icon: code | |
| .. literalinclude:: ../../../scripts/tutorials/00_sim/log_time.py | |
| :language: python | |
| :emphasize-lines: 46-55, 72-79 | |
| :linenos: | |
| The Code Explained | |
| ~~~~~~~~~~~~~~~~~~ | |
| The Isaac Lab Docker container has several `volumes`_ to facilitate persistent storage between the host computer and the | |
| container. One such volume is the ``/workspace/isaaclab/logs`` directory. | |
| The ``log_time.py`` script designates this directory as the location to which a ``log.txt`` should be written: | |
| .. literalinclude:: ../../../scripts/tutorials/00_sim/log_time.py | |
| :language: python | |
| :start-at: # Specify that the logs must be in logs/docker_tutorial | |
| :end-at: print(f"[INFO] Logging experiment to directory: {log_dir_path}") | |
| As the comments note, :func:`os.path.abspath()` will prepend ``/workspace/isaaclab`` because in | |
| the Docker container all python execution is done through ``/workspace/isaaclab/isaaclab.sh``. | |
| The output will be a file, ``log.txt``, with the ``sim_time`` written on a newline at every simulation step: | |
| .. literalinclude:: ../../../scripts/tutorials/00_sim/log_time.py | |
| :language: python | |
| :start-at: # Prepare to count sim_time | |
| :end-at: 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: | |
| .. code-block:: bash | |
| isaaclab -p scripts/tutorials/00_sim/log_time.py --headless | |
| Now ``log.txt`` will have been produced at ``/workspace/isaaclab/logs/docker_tutorial``. If we exit the container | |
| by typing ``exit``, we will return to ``IsaacLab/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: | |
| .. code-block:: console | |
| ./container.py copy | |
| We will see a terminal readout reporting the artifacts we have retrieved from the container. If we navigate to | |
| ``/isaaclab/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.py copy`` command copies them from those `volumes`_ to these directories. | |
| We could return to the Isaac Lab Docker terminal environment by running ``container.py enter`` again, | |
| but we have retrieved our logs and wish to go inspect them. We can stop the Isaac Lab Docker container with the following command: | |
| .. code-block:: console | |
| ./container.py stop | |
| This will bring down the Docker Isaac Lab 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.py start``, we may enter the following command to delete the **isaac-lab-base** image: | |
| .. code-block:: console | |
| docker image rm isaac-lab-base | |
| A subsequent run of ``docker image ls`` will show that the image tagged **isaac-lab-base** 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. | |
| .. _volumes: https://docs.docker.com/storage/volumes/ | |
| .. _bind mounted: https://docs.docker.com/storage/bind-mounts/ | |
| .. _docker prune: https://docs.docker.com/config/pruning/ | |