···2929The command above for example will build the latest commit on the `master`
3030branch.
31313232+By default it will also create a `git` user with user and group ID 1000:1000,
3333+but you can change it with the `UID` and `GID` build arguments.
3434+3535+```sh
3636+docker build -t knot:latest --build-arg UID=(id -u) GID=(id -u)
3737+```
3838+3939+The command above for example will create a user with the host user's UID and GID.
4040+This is useful if you are bind mounting the repositories and app folder on the host,
4141+as in the provided `docker-compose.yml` file.
4242+3243<hr style="margin-bottom: 20px; margin-top: 10px" />
33443445When using compose, it can be specified as a build argument which will be