diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index d30b2a82b..91d0bbc4e 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -74,6 +74,7 @@ You can set other options for that script by setting the OPT variable when runni e.g. ```bash +# Run build processes with 8 threads OPT="-j 8" ./dockrun.sh v0.17.3.0 ``` @@ -82,10 +83,10 @@ You can also examine the build and install logs by running a shell in the contai ```bash # Tail running logs docker exec -it gitrun /bin/bash -tail -f builder/var/*.log +tail -F builder/var/*.log -# Inspect logs +# Inspect logs, in format install-.log and build-.log docker exec -it gitrun /bin/bash more builder/var/install-linux.log -more builder/var/build.log +more builder/var/build-linux.log ```