···3333but you can change it with the `UID` and `GID` build arguments.
34343535```sh
3636-docker build -t knot:latest --build-arg UID=(id -u) GID=(id -u)
3636+docker build -t knot:latest --build-arg UID=$(id -u) GID=$(id -u)
3737```
38383939The command above for example will create a user with the host user's UID and GID.