From eeb0be49050b0076618775f9df2d0b3645dcc034 Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Wed, 1 Dec 2021 15:33:08 +0000 Subject: [PATCH] Bump versions in DOCKRUN.md and add log commands --- contrib/gitian/DOCKRUN.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index fa5e13c82..d30b2a82b 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -56,7 +56,7 @@ The dockrun.sh script will do everything to build the binaries. Just specify the version to build as its only argument, e.g. ```bash -./dockrun.sh v0.17.2.3 +./dockrun.sh v0.17.3.0 ``` The build should run to completion with no errors, and will display the SHA256 checksums @@ -74,12 +74,18 @@ You can set other options for that script by setting the OPT variable when runni e.g. ```bash -OPT="-j 8" ./dockrun.sh v0.17.2.3 +OPT="-j 8" ./dockrun.sh v0.17.3.0 ``` You can also examine the build and install logs by running a shell in the container, e.g. ```bash +# Tail running logs +docker exec -it gitrun /bin/bash +tail -f builder/var/*.log + +# Inspect logs docker exec -it gitrun /bin/bash more builder/var/install-linux.log +more builder/var/build.log ```