diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-12-25 21:16:59 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-12-25 21:17:00 +0200 |
commit | f04d4a78de257d44f62ca00e0d3ed9ca6ab57a46 (patch) | |
tree | 1b57a4d20312325b230a47f5762ccb25ca05911f /README.md | |
parent | Merge pull request #2909 (diff) | |
parent | Dockerfile: add option to set build parallelism (diff) | |
download | monero-f04d4a78de257d44f62ca00e0d3ed9ca6ab57a46.tar.xz |
Merge pull request #2910
37f9c6e6 Dockerfile: add option to set build parallelism (MoroccanMalinois)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -136,7 +136,11 @@ Installing a snap is very quick. Snaps are secure. They are isolated with all of * Docker + # Build using all available cores docker build -t monero . + + # or build using a specific number of cores (reduce RAM requirement) + docker build --build-arg NPROC=1 -t monero . # either run in foreground docker run -it -v /monero/chain:/root/.bitmonero -v /monero/wallet:/wallet -p 18080:18080 monero |