From e8fb0dfe3ebd8d2f0f3615a8986480922159b65e Mon Sep 17 00:00:00 2001 From: Stephen Mather <1174901+smathermather@users.noreply.github.com> Date: Wed, 25 Jan 2023 13:22:41 -0500 Subject: [PATCH] Fix confusing order to readme on rootless --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index da0a4aa..cc03055 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,6 @@ 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 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/ apptainer.def -apptainer run --writable node/ -``` Linux users can connect to 127.0.0.1. @@ -38,6 +30,15 @@ Linux users can connect to 127.0.0.1. If the computer running NodeODM is using an old or 32bit CPU, you need to compile OpenDroneMap from sources and setup NodeODM natively. You cannot use docker. Docker images work with CPUs with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3 instruction set support or higher. Seeing a `Illegal instruction` error while processing images is an indication that your CPU is too old. +### Running rootless + +* 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/ apptainer.def +apptainer run --writable node/ +``` + ## API Docs See the [API documentation page](https://github.com/OpenDroneMap/NodeODM/blob/master/docs/index.adoc).