|
2 | 2 | > We take OpenFOAM as an example here, but containers for any other HPC software
|
3 | 3 | > package can be built in the same way.
|
4 | 4 |
|
5 |
| -## Build apptainer containers for OpenFOAM |
| 5 | +## Build Apptainer containers for OpenFOAM |
6 | 6 |
|
7 | 7 | You only need to:
|
8 | 8 |
|
@@ -37,6 +37,33 @@ will try to pull some base containers from a registry, and build them only if th
|
37 | 37 | unsuccessful. Pull-related behaviour can be configured in a `pull` section
|
38 | 38 | (again, refer to [config.yaml](config.yaml) for an example).
|
39 | 39 |
|
| 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 | + |
40 | 67 | ## Build containers for your OpenFOAM-based projects
|
41 | 68 |
|
42 | 69 | 1. Add your project to the configuration file.
|
|
0 commit comments