diff --git a/frontera.md b/frontera.md index 5305b7d..a60175c 100644 --- a/frontera.md +++ b/frontera.md @@ -8,22 +8,21 @@ Then get an interactive session on a compute node. For example for a 30 min sess idev -m 30 -N 1 --tasks-per-node 2 -p development ``` -Then execute: +You can then pull and use the automatically generated container from the ci workflow: ``` module load tacc-apptainer apptainer pull -F docker://seissol/training:latest -apptainer build -f my-training.sif singularity.def -ln -sf $(realpath my-training.sif) ~/my-training.sif +ln -sf $(realpath latest.sif) ~/my-training.sif apptainer run ~/my-training.sif ``` -You can also use the automatically generated container after pulling the docker container +Alternatively, you can build and use the container with: ``` module load tacc-apptainer -apptainer pull -F docker://seissol/training:latest -ln -sf $(realpath latest.sif) ~/my-training.sif +apptainer build -f my-training.sif singularity.def +ln -sf $(realpath my-training.sif) ~/my-training.sif apptainer run ~/my-training.sif ```