diff options
author | Seth For Privacy <seth@sethforprivacy.com> | 2021-12-01 15:33:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-01 15:33:08 +0000 |
commit | eeb0be49050b0076618775f9df2d0b3645dcc034 (patch) | |
tree | 91cc9b333d691e2b8a61dd7322a79f86827b2fc2 /contrib | |
parent | Merge pull request #8097 (diff) | |
download | monero-eeb0be49050b0076618775f9df2d0b3645dcc034.tar.xz |
Bump versions in DOCKRUN.md and add log commands
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gitian/DOCKRUN.md | 10 |
1 files 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 ``` |