Skip to content

Commit 892ee90

Browse files
committed
docs: layered containers
1 parent 6a0adfd commit 892ee90

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

docs.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
> We take OpenFOAM as an example here, but containers for any other HPC software
33
> package can be built in the same way.
44
5-
## Build apptainer containers for OpenFOAM
5+
## Build Apptainer containers for OpenFOAM
66

77
You only need to:
88

@@ -37,6 +37,33 @@ will try to pull some base containers from a registry, and build them only if th
3737
unsuccessful. Pull-related behaviour can be configured in a `pull` section
3838
(again, refer to [config.yaml](config.yaml) for an example).
3939

40+
### Layered base containers
41+
42+
The `containers.basic.framework` keyword can be a mapping as shown above, in which case,
43+
a single base framework is expected to be on the container, and can also be a list of frameworks:
44+
```yaml
45+
containers:
46+
basic:
47+
openfoam-hpctoolkit:
48+
os:
49+
distro: ubuntu
50+
version: 24.04
51+
mpi:
52+
implementation: openmpi
53+
version: 4.1.5
54+
framework:
55+
- definition: com-openfoam
56+
version: 2312
57+
- definition: hpctoolkit
58+
version: 2024.01.99-next
59+
```
60+
61+
If a list of frameworks is provided, all will be installed on the container, in order,
62+
by creating intermediary images off of the previous ones, starting from the MPI container.
63+
64+
All base images source `bashrc` files in `%environment` section automatically from all
65+
software showing up in `/apps.json` and having a `source_script` entry.
66+
4067
## Build containers for your OpenFOAM-based projects
4168

4269
1. Add your project to the configuration file.

0 commit comments

Comments
 (0)