Skip to content

Commit

Permalink
address Sebastian's review
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Ulrich committed May 22, 2024
1 parent fadfe81 commit 9382432
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions frontera.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 9382432

Please sign in to comment.