File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ From: {{ CONTAINERS_DIR }}/basic/{{ BASE_CONTAINER }}.sif
101
101
` ` `
102
102
- In the definition file, important metadata about the container should be logged to `/apps.json`. Refer to
103
103
the [projects/test.def](projects/test.def) example for inspiration.
104
+ - This allows users to run `apptainer run container.sif info` to get the contents of `apps.json`
104
105
- If your project requires sourcing an environment file (`.bashrc` or the like), it's good practice to set
105
106
the `%runscript` section so that the file is sourced before the user is dropped into a shell for an
106
107
interactive session. Refer to [basic/com-openfoam.def](basic/com-openfoam.def) for an example.
@@ -120,7 +121,7 @@ From: {{ CONTAINERS_DIR }}/basic/{{ BASE_CONTAINER }}.sif
120
121
121
122
` ` ` bash
122
123
# Note the quoting of the command for openfoam-based containers (since it is fed to Bash as-is)
123
- apptainer run containers/projects/test-master.sif "jq '.' /apps.json"
124
+ apptainer run containers/projects/test-master.sif info
124
125
` ` `
125
126
` ` ` json
126
127
{
@@ -143,7 +144,7 @@ apptainer run containers/projects/test-master.sif "jq '.' /apps.json"
143
144
144
145
Although it is up to the maintainer to decide what to put in the metadata,
145
146
each project container will (usually) log important metadata to its `/apps.json`
146
- which can be queried with `jq`.
147
+ which can be queried with `jq` (or by issuing the info command from the container) .
147
148
148
149
The previous snippet suggests that the container provides two executables for testing
149
150
the OpenMPI implementation, and that is built on top of `(OpenCFD) OpenFOAM v2312`. Because
You can’t perform that action at this time.
0 commit comments