Containers have become a great way to produce reproducible science and capture exact environments for running workloads. There is, however, some friction and learning curve in designing them. Here, we provide 2 paths: using Apptainer directly or importing a Docker container to Apptainer. In the Docker section (Approach 2 below), we work an example to illustrate common issues and strategies for creating and using containers on the CHPC systems.
This approach has fewer steps, but they may be more complicated depending on your comfort level with building software or your need to customize. Luckily, the rise of AI-based tools has significantly decreased the difficulty.
We first suggest trying to directly import a Docker container if it exists (see here). Otherwise …
It is not common to find an Apptainer (or, as it was previously called, “Singularity”) definition file, so you will probably have to make your own with this method. However, you can design and build them relatively quickly starting with one generated from an LLM tool (e.g., Claude, ChatGPT, Gemini, etc.).
For instance, this prompt (using a snippet from the NIH AFNI setup page, gave me a great starting point for a definition file):
Make the following into an Apptainer definition file: This is the quick form of AFNI setup for Ubuntu 22.04. It includes downloading the Bootcamp data and running the system check (don’t forget to do that!). Download the command scripts. Copy+paste: cd curl -O https://raw.githubusercontent.com/afni/afni/master/src/other_builds/OS_notes.linux_ubuntu_22_64_a_admin.txt curl -O https://raw.githubusercontent.com/afni/afni/master/src/other_builds/OS_notes.linux_ubuntu_22_64_b_user.tcsh curl -O https://raw.githubusercontent.com/afni/afni/master/src/other_builds/OS_notes.linux_ubuntu_22_64_c_nice.tcsh Feel free to read any of these, for educational purposes.
Save the result into a file, e.g., ~/my_file.def
.
Apptainer has a great page: https://apptainer.org/docs/user/main/build_a_container.html that describes your options. To summarize …
If you are pretty confident or the build process is fast, just build it:
[me@login01]:$ module load apptainer
[me@login01]:$ apptainer build ~/my_container.sif ~/my_file.def
If you think you may need to do some experimentation to get the container to work, follow this for creating a SIF from the sandbox.
While Apptainer is well-supported on most high-performance computing clusters, you may want something even more portable. Docker is one way to build OCI-compliant containers that will run (or can be imported) on a wide variety of platforms. Also, you are more likely to find the container published as a Docker container or a Dockerfile (recipe) available on the websites of your favorite software.
Starting on your local machine:
[me@my_local_machine]:$ git clone git@github.com:freesurfer/freesurfer.git
[me@my_local_machine]:$ cd freesurfer
Now, we can build the container (by default it uses the Dockerfile
in the current directory)
[me@my_local_machine]:$ docker build .
Eventually, it finishes building:
=> [7/7] RUN wget https://surfer.nmr.mgh.harvard.edu/pub/dist/freesurfer/7.2.0/freesurfer-linux-centos7_x86_64-7.2.0.tar.gz -O fs.tar.gz && tar --no-same-owner - 329.8s
And you have a brand new container: ``` [me@my_local_machine]:$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE