Using containers¶
Running commands inside a container¶
The apptainer exec
command will allow you to execute any program within a
given container. The apptainer run
command performs the action defined by
the %runscript
section, which is the primary task of the container. Using the
apptainer run
command is the simpler approach for job submissions.
You can even "execute" a container, which performs the same action as the
apptainer run
command. For example, the following demonstrates how to inspect
the runscript and execute the /data/containers/public/python3_helloworld.simg
container:
$ apptainer inspect -r /data/containers/public/python3_helloworld.simg
#!/bin/sh
python3 -c 'print("Hello, World!")'
$ /data/containers/public/python3_helloworld.simg
Hello, World!
$ apptainer run /data/containers/public/python3_helloworld.simg
Hello, World!
Execute a script from outside the container¶
Using on the cluster
For typical use, you want to use the apptainer run
or
apptainer exec
commands, especially when submitting the work
via the scheduler.
The following example runs a python script hello_world2.py
from the current
directory using the /data/containers/public/python3_helloworld.simg
container:
$ apptainer exec /data/containers/public/python3_helloworld.simg python3 ./hello_world2.py
Hello, World!
Hello, World (again)!
The file hello_world2.py
contains the following code:
print("Hello, World!")
print("Hello, World (again)!")
If command apptainer exec
was replaced by apptainer run
, the runscript
would be called, ignoring any parameters after the container name.
Customised Environments
While we encourage users to customise their Apocrita environment to
make their workflow easier, please be aware that customisations
which change the user's environment for example by setting variables
in the ~/.bash_profile
file, or by using python's pip
to create a
~/.local
folder, may cause problems with Apptainer which can be
difficult to troubleshoot.
Using containers with Grid Engine¶
One of the major benefits of Apptainer is the simplicity with which it can be used in an HPC environment. Your Grid Engine submission script may not require any modules loading to run your container. The resource requirements should be very similar to native code.
Simple example¶
#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe smp 1
#$ -l h_rt=1:0:0
#$ -l h_vmem=1G
apptainer run /data/containers/public/python3_helloworld.simg
Modules example¶
Applications installed within Apptainer containers may also be provided
as a module to abstract the container invocation commands (apptainer run
and apptainer exec
). In these cases, the container name will match the
runscript command. For example, to use Pandoc as a
module, simply load the pandoc
module to use the application.
#!/bin/bash
#$ -cwd
#$ -j y
#$ -pe smp 1
#$ -l h_rt=1:0:0
#$ -l h_vmem=1G
module load pandoc
pandoc --help
Shell access to the container¶
It is possible to launch a shell within the container using the shell
command. Interacting directly with a shell inside the container can be useful
for code debugging and running multiple commands in a single interactive
session, as an alternative to writing a single script. Below demonstrates how
to invoke python3 from inside the
/data/containers/public/python3_helloworld.simg
container using an
interactive shell:
$ apptainer shell /data/containers/public/python3_helloworld.simg
Apptainer> python3
Python 3.8.10 (default, Sep 28 2021, 16:10:42)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Running containers from external sources¶
Use of external containers for Research
For long term reproducibility of containers, we recommend that you build your own native Apptainer containers from definition files instead of relying on 3rd party containers for your research. Using containers from external sources may produce undesirable results if the container is rebuilt after upstream changes such as updated or obsoleted packages.
Use a compute node for pulling large containers
Pulling large containers is best done on a compute node. Please request an
interactive qlogin session
with an appropriate resource request for large containers, remembering to
follow the APPTAINERENV_NSLOTS=${NSLOTS}
advice covered in
Building containers to ensure all cores are
used correctly.
Containers created elsewhere can be copied or imported, and run on the cluster. The following example demonstrates how to import and run the latest Ubuntu official image stored in the Docker Hub:
$ apptainer pull ubuntu.simg docker://ubuntu:latest
$ apptainer exec ubuntu.simg cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=22.04
DISTRIB_CODENAME=jammy
DISTRIB_DESCRIPTION="Ubuntu 22.04.1 LTS"