@@ -16,9 +16,32 @@ This section describes three use cases of the Docker container (including a buil
### Prerequisites
For building the Docker image, you need a local copy of the [Git repository](/.). After that, this guide assumes you are in the [`projects`](projects/) subdirectory (we skip the output of the commands here):
Since the Docker container will run as a dedicated, non-root user, it is advisable to create this user with the ID of your local user. That way, file permission issues will be avoided. Get your user ID with the following command and note it down - it will be needed in the build steps:
```terminal
$whoami
localuser
$id
uid=12345(localuser) ...
$
```
Look for the `uid` in the output of `id`. In the example above, `12345` is the ID of user `localuser`, currently logged in and executing the commands.
One last thing that is needed for the example runs of the Docker container is data. For simplicity, we assume that a directory `/home/user/models` exists on the local computer executing a converter, full of modelling data.
<!--
- Do single example call
- show how to loop
- all build use local UID!
1. App like
- special build
...
...
@@ -29,6 +52,9 @@ This section describes three use cases of the Docker container (including a buil