Merge pull request #193 from smathermather/apptainer-tweaks

Rename singularity.def to apptainer.def
pull/194/head
Piero Toffanin 2023-01-25 13:16:32 -05:00 zatwierdzone przez GitHub
commit 512079b3c9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -20,11 +20,12 @@ docker run -p 3000:3000 opendronemap/nodeodm
```
docker-machine ip
```
### Running rootless
* A rootless alternative to Docker is using [Apptainer](https://apptainer.org/). In order to run NodeODM together with ClusterODM on HPC, we need a rootless alternative to Docker, and that's where Apptainer comes in to play. From the Linux command line, cd into the NodeODM folder and run the following commands to host a NodeODM instance:
* A rootless alternative to Docker is using [Apptainer](https://apptainer.org/). In order to run NodeODM together with ClusterODM in rootless environments, for example on HPC, we need a rootless alternative to Docker, and that's where Apptainer comes in to play. From the Linux command line, cd into the NodeODM folder and run the following commands to host a NodeODM instance:
```
apptainer build --sandbox node/ singularity.def
apptainer build --sandbox node/ apptainer.def
apptainer run --writable node/
```