From 9d02531f0d14df2a59c08a52de22579460a4afa7 Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Wed, 1 Dec 2021 17:44:58 +0000 Subject: [PATCH] Update DOCKRUN.md --- contrib/gitian/DOCKRUN.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 ```