Update DOCKRUN.md

This commit is contained in:
Seth For Privacy 2021-12-01 17:44:58 +00:00 committed by GitHub
parent eeb0be4905
commit 9d02531f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -74,6 +74,7 @@ You can set other options for that script by setting the OPT variable when runni
e.g. e.g.
```bash ```bash
# Run build processes with 8 threads
OPT="-j 8" ./dockrun.sh v0.17.3.0 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 ```bash
# Tail running logs # Tail running logs
docker exec -it gitrun /bin/bash 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 docker exec -it gitrun /bin/bash
more builder/var/install-linux.log more builder/var/install-linux.log
more builder/var/build.log more builder/var/build-linux.log
``` ```