You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You probably want to add those `export` statements to your `.bashrc` under `# User specific aliases and functions` so those environment variables are always set when you log in.
42
+
You may want to add those `export` statements to your `.bashrc` under `# User specific aliases and functions` so those environment variables are always set when you log in.
43
43
44
44
### Bind locations
45
45
46
-
Your $HOME and Scratch directories are bound automatically so they are available
47
-
from inside your containers.
46
+
Your $HOME directory is bound automatically so it is available from inside your containers.
47
+
On clusters other than Myriad, your Scratch directory is also bound. You can pass in other
48
+
bind paths.
49
+
50
+
If you want to have no automatically-bound locations you can use the `--no-mount bind-paths`
51
+
option, for example:
52
+
```
53
+
apptainer run --no-mount bind-paths mycontainer.sif
54
+
```
55
+
56
+
This can be useful if you want to isolate the container from the contents of your home directory,
57
+
for example conflicting software packages you might have installed there.
48
58
49
59
For more information on these options, have a look at the Apptainer documentation:
0 commit comments