Apptainer/Singularity

Apptainer (formerly called Singularity) is a tool to run applications in isolated images (also often called “containers”), similar to the more widely known Docker. We use it to provide you with a well-defined environment that contains the proper versions of all dependencies, independent of what you have installed locally on your system. This ensures that the applications will run in the same way on different machines, e.g. both when running on the real robots or in simulation on your own computer.

The image we provide contains all dependencies to get started with the robot. If you want to use additional libraries in your own code, you can extend the image accordingly.

Apptainer vs Singularity vs SingularityCE

There may be some confusion about different versions of Apptainer/Singularity that are around.

Originally there was only “Singularity”. Recently Sylabs (a company build around Singularity) forked from the main project, resulting in two projects, both called “Singularity” (and both mostly compatible but not exactly the same). Some time later the main project was renamed to “Apptainer” to resolve this confusion. This now leaves us in the situation that there is

  • Singularity - The original project

  • Singularity (or SingularityCE) - The version maintained by Sylabs

  • Apptainer - basically Singularity 3.9 onwards.

At this point in time, they are still all mostly compatible with each other, assuming you are using a reasonably recent version. So most likely any of them will work (simply replace apptainer with singularity in the commands below, when using Singularity). However, officially we only support Apptainer 1.0 (this is what we use on our side) so you may use any other version on you own risk.

Install Apptainer

Note that Apptainer only runs on Linux. It may work with a virtual machine but it is recommended to use a computer with a native Linux installation (we are testing with Ubuntu but other distributions should also be fine).

RPM and DEB packages can be downloaded for each release from the GitHub repository.

For example on Ubuntu, you can download the DEB package and install it with the following command:

$ sudo apt install ./apptainer_X.X.X_amd64.deb

You can also manually build it from source, for this see the official installation instructions.

Get the Image

You can directly pull the image with Apptainer, using the following command:

$ apptainer pull oras://ghcr.io/open-dynamic-robot-initiative/trifinger_singularity/trifinger_user:rrc2022

The image uses Ubuntu 20.04 and has all dependencies of the robot software and the simulation already installed. For most of the libraries we use the default version provided through the official Ubuntu repositories. To explore the image and to check which libraries and which versions exactly are installed, you can open a shell inside the container, see Open a Shell in the Container.

Note

When you pull the image with the command above, the resulting file will be named trifinger_user_rrc2022.sif. In the following, we will only use rrc2022.sif to keep the commands shorter. You can either rename the file or adjust the commands accordingly.

Using the Apptainer Image

This is a brief introduction to the basic usage of the Apptainer image. For more information, see the official documentation.

Important

By default, Apptainer is not fully isolated. For example the whole home directly is bound into the container at run time. This can impair reproducibility. See Ensure Isolation from the Host System on how to make it more isolated.

Run a Command using the Container

You can run commands inside the Apptainer image. They will have access to everything installed in the image and will be more or less isolated from your host system (see Ensure Isolation from the Host System).

$ apptainer run rrc2022.sif python3 path/to/some/script.py

To give a more concrete example, the following runs the simulation with a demo script, moving the robot to random positions (the --nv flag is only needed if you are using Nvidia drivers, otherwise you have to remove it, see Running GUI-Applications in Apptainer):

$ apptainer run --nv rrc2022.sif ros2 run trifinger_simulation demo_trifinger_platform.py

Note

If the image file is marked as executable, you can also drop apptainer run and directly execute the file. However, this way you cannot pass additional arguments like --nv to Apptainer.

Open a Shell in the Container

With the command above, you can only run a single command inside the container environment. If you want to run multiple commands in a row, preserving the environment, you can open a shell in the container:

$ apptainer shell path/to/rrc2022.sif

Once inside the container, run the following command:

Apptainer> source /setup.bash

This is needed set up the environment, so the TriFinger-related software packages are found. Now you can again run commands like the demo script (you may need to pass --nv to apptainer shell, see Running GUI-Applications in Apptainer):

Apptainer> ros2 run trifinger_simulation demo_trifinger_platform.py

Ensure Isolation from the Host System

By default Apptainer is not completely isolated from the host system. If run without arguments, it automatically binds the full home directory of the user, the /tmp directory and a few system directories into the image.

While this is usually very convenient, it can cause some trouble. For example, Python may find packages that are installed in your home which may be conflicting with versions installed in the container. Further it can impair reproducability, as your code may unintentionally use some package from your home directory which are not available when executed on a different machine. To avoid these problems, you can run Apptainer with the following command, to be more isolated:

$ export APPTAINERENV_DISPLAY=$DISPLAY
$ apptainer shell --cleanenv --no-home -B path/to/workspace path/to/rrc2022.sif
  • --cleanenv: Do not export all environment variables from the host into the image. Since the environment variable DISPLAY needs to be set in order to run graphical applications, it is still exported into the image by setting APPTAINERENV_DISPLAY in the first line.

  • --no-home: Do not bind the full home directory. Other directories like /tmp are still bound. You may use --contain to exclude those as well.

  • -B path/to/workspace: Explicitly bind your workspace, so it is accessible in the container. You can list multiple directories separated by commas.

For more information, please refer to the official documentation of Apptainer.

Running GUI-Applications in Apptainer

When running applications that use GPU-based rendering (e.g. the PyBullet visualisation) on a computer with Nvidia drivers, you may need to add the –nv flag when running Apptainer.

$ apptainer run --nv rrc2022.sif <command>

or

$ apptainer shell --nv rrc2022.sif

See the Apptainer documentation on GPU Support for more information.

Add Custom Dependencies to the Container

The image we provide already includes everything needed to run the robot and the simulation. However, you may need additional libraries to use them in our own code, which are not yet present. In this case, you can create your own image which is based on our standard image but extends it with your additional dependencies.

Note

You don’t need to create a custom container for adding common Python dependencies. Dependencies that can be installed with pip can simply be listed as requirements of your own Python package (e.g. in the setup.cfg if you are using our example package).

You also don’t need to add your own package for the challenge to the image as this will be provided separately. So you only need to create a custom image if you want to install dependencies that are not yet available in the default image and cannot be installed with pip.

Create the Custom Image

To extend the image, create definition file like the following:

# Use the rrc2022 image as base
Bootstrap: oras
From: ghcr.io/open-dynamic-robot-initiative/trifinger_singularity/trifinger_user:rrc2022

# alternatively to the above, you can specify the path to a local image:
# Bootstrap: localimage
# From: ./rrc2022.sif

%post
    # Put commands to install additional dependencies here.
    # Make sure everything runs automatically without human input (e.g. add
    # `-y` to automatically say "yes" below).
    apt-get install -y package_name

See the official Documentation for Definition Files for all options in the definition file.

Assuming you called your definition file user_image.def, use the following command to build the image:

$ apptainer build --fakeroot user_image.sif path/to/user_image.def

Warning

To ensure that your custom image is compatible with our setup for executing the code, always use the official image as base and avoid overwriting existing libraries or applications with different versions.

Upload the Custom Image

To use your custom image on the real robots, you need to upload it to the submission system and update your configuration.