Skip to content

Commit e4f6484

Browse files
committed
docs: document info command in containers
1 parent f1281de commit e4f6484

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ From: {{ CONTAINERS_DIR }}/basic/{{ BASE_CONTAINER }}.sif
101101
```
102102
- In the definition file, important metadata about the container should be logged to `/apps.json`. Refer to
103103
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`
104105
- If your project requires sourcing an environment file (`.bashrc` or the like), it's good practice to set
105106
the `%runscript` section so that the file is sourced before the user is dropped into a shell for an
106107
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
120121

121122
```bash
122123
# 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
124125
```
125126
```json
126127
{
@@ -143,7 +144,7 @@ apptainer run containers/projects/test-master.sif "jq '.' /apps.json"
143144

144145
Although it is up to the maintainer to decide what to put in the metadata,
145146
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).
147148

148149
The previous snippet suggests that the container provides two executables for testing
149150
the OpenMPI implementation, and that is built on top of `(OpenCFD) OpenFOAM v2312`. Because

0 commit comments

Comments
 (0)