diff options
| author | Seth For Privacy <seth@sethforprivacy.com> | 2021-12-02 16:54:04 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-02 16:54:04 +0000 |
| commit | 6a46f8c40ae069daf22e2bb5b7d72510c00e0eb4 (patch) | |
| tree | f5f37dd4c69551eadfe7ed7281c3e205de4055d9 | |
| parent | 52612e7a12d5d350979bed940b310a57e9ab4a14 (diff) | |
| download | monzero-core-6a46f8c40ae069daf22e2bb5b7d72510c00e0eb4.tar.gz monzero-core-6a46f8c40ae069daf22e2bb5b7d72510c00e0eb4.tar.xz monzero-core-6a46f8c40ae069daf22e2bb5b7d72510c00e0eb4.zip | |
Add copy commands for compiled binaries
| -rw-r--r-- | contrib/gitian/DOCKRUN.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 715ac3ff8..7f44b7914 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -110,3 +110,10 @@ You can find the compiled archives inside of the container at the following dire docker exec -it gitrun /bin/bash ls -la out/v0.17.3.0/ ``` + +To copy the compiled archives to the local host out of the Docker container, you can run the following (be sure to replace `v0.17.3.0` with the version being built): + +```bash +mkdir out +docker cp gitrun:/home/ubuntu/out/v0.17.3.0 out +``` |
