This is a follow-up guide on Apptainer on how to customize containers for optimal productivity. For an introduction to Apptainer, see please first read this article.
\uD83D\uDCD8 Instructions
In this tutorial, you will learn
About
apptainer
definition files, which are informally termed recipes;How to use pre-built docker images;
Use recipes to customize the pre-built docker images.
🧁 The basic of Apptainer recipes
The Apptainer recipe (or definition file) is a simple text file with a .def
extension. These files are divided into two parts, the Header and the Sections.
The Header describes the operating system (OS) within the container.
The rest of the definition comprises Sections. Each section is defined by a
%
character followed by the name of the particular section. All sections are optional, and a.def
file may contain more than one instance of a given section.
The Header
The header should be written at the top of your recipe, and it will need at least two “arguments,” the Bootstrap
agent and the From
. Loosely speaking, the former tells Apptainer where to get the OS we desire to work with, while the latter will inform the specific OS and, optionally, its exact version. So, for example,
...
will use the latest Debian OS as the basis for our container. The OS will be obtained from an official docker pre-built image. Alternatively, we can set up version 7 of Debian by replacing From: debian
with From: debian:7
.
The Sections
The Sections most commonly used are listed below.
%files
The %files
section allows you to copy files into the container safely. Its general form lists the files (or directories) in the host and the container as follows:
Code Block |
---|
%files /path/file1 /opt/ |
%post
In this section, you can download and install software from the internet as if in a command line of the chosen OS. For example, assuming we are running a Debian container, we can
...
Code Block |
---|
%post apt-get update && apt-get install -y \ libomp-dev \ git export NOW=`date` git clone https://github.com/tatsu-lab/stanford_alpaca.git |
%environment
The %environment
section allows you to define environment variables available at runtime. If you define a variable in %post
it will be available when building the container but not when executing it. Conversely, variables included in the %environment
section are unavailable at build time. For instance, to make the previously created NOW
variable available at runtime as well, we should define the %environment
section as follows:
Code Block |
---|
%environment NOW=$NOW |
%runscript
The contents of the %runscript
section are executed when the container image is run using, for example, apptainer run
. The following %runscript
section displays the time when the container was created.
Code Block |
---|
%runscript echo "Container was created $NOW" |
%labels
This section creates metadata for your container, and its general format is a name-value pair. Below, we are defining the author and the version of our container.
Code Block |
---|
%labels Author hpc@uconn Version v0.1 |
%help
The %help
section helps describe the purpose of the container and how a user can interact with it. Its content will be incorporated into the container metadata with the content from %labels
. The %help
content can be retrieved using the run-help
command.
...
In the following section of this tutorial, we put into practice the knowledge we just acquired about the sections of Apptainer recipes.
🐳 Using a pre-built image from Docker to build a custom geopandas
container
Let us call geopandas.def
the definition file containing the chunk of code below. The provided commands will install the geopandas
python library on the top of a GDAL pre-built image. This is convenient because GDAL is a “tricky to install” dependency for the geopandas
library. Our %runscript
will show the time at which the container was built and, in addition, the operating system used by the container.
...
Code Block |
---|
apptainer run geopandas.sif |
✍️ Summary
Choose a pre-built image (usually from the Docker hub).
Use
%files
to transfer local files to the container (if needed).In the
%post
section, you can usebash
to install the software you need in your container.
\uD83D\uDCCB Related articles
Filter by label (Content by label) | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|