aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth For Privacy <seth@sethforprivacy.com>2021-12-01 17:44:58 +0000
committerGitHub <noreply@github.com>2021-12-01 17:44:58 +0000
commit9d02531f0d14df2a59c08a52de22579460a4afa7 (patch)
tree9418402ca5428fdbb0fe683b8e26cd683cc72581
parentBump versions in DOCKRUN.md and add log commands (diff)
downloadmonero-9d02531f0d14df2a59c08a52de22579460a4afa7.tar.xz
Update DOCKRUN.md
-rw-r--r--contrib/gitian/DOCKRUN.md7
1 files 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-<OS>.log and build-<OS>.log
docker exec -it gitrun /bin/bash
more builder/var/install-linux.log
-more builder/var/build.log
+more builder/var/build-linux.log
```