-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from MELDProject/dev_docker
Dev docker
- Loading branch information
Showing
3 changed files
with
37 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
# FAQs | ||
|
||
Coming soon! | ||
## Issues with native installation | ||
TBC | ||
|
||
## Issues with Docker installation | ||
TBC | ||
|
||
## Issues with Singularity/Apptainer installation | ||
|
||
--- | ||
### Issue of space when with creating the SIF | ||
```bash | ||
INFO: Creating SIF file... | ||
FATAL: While performing build: while creating squashfs: create command failed: exit status 1: | ||
Write failed because No space left on device | ||
``` | ||
It means there is not enough space where the default singularity/apptainer cache and temporary directories are located. Usually the default cache is located in `$HOME/.singularity/cache` and the default temporary directory `$HOME/.tmp`\ | ||
Solution: | ||
- You can make space in the default `$HOME` directory | ||
- You can change the singularity/apptainer cache and temporary directories for a folder where there is space: | ||
```bash | ||
export SINGULARITY_CACHEDIR=<path_folder_with_space> | ||
export SINGULARITY_TMPDIR=<path_folder_with_space> | ||
``` | ||
Or with apptainer | ||
```bash | ||
export APPTAINER_CACHEDIR=<path_folder_with_space> | ||
export APPTAINER_TMPDIR=<path_folder_with_space> | ||
``` | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters