...
Version | Module | Available on |
---|---|---|
1.2.5-GCCcore-11.3.0 | tools/Apptainer/1.2.5-GCCcore-11.3.0 | Noctua 2 |
1.1.9-GCCcore-11.3.0 | tools/Apptainer/1.1.9-GCCcore-11.3.0 | Noctua 2 |
...
As Apptainer is configured to use user namespaces on PC2 systems, you can create containers directly on the frontends of the HPC systems, e.g. with a recipe like
Code Block |
---|
BootStrap: docker
From: ubuntu:22.04
%post
mkdir /pc2
apt-get -y update
apt-get -y install htop vim
%environment
export LC_ALL=C
%runscript
echo "hello from container"
%labels
Author blub |
...