aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoreiabea <developer@eiabea.com>2016-08-31 18:10:44 +0200
committereiabea <developer@eiabea.com>2016-09-01 11:17:17 +0200
commit93972546c052d16f310d24e2c8334b1f6d4e79c7 (patch)
tree4e75d0ebb7c4fff06183c7a565a06bbe44bcf5f2 /README.md
parentMerge pull request #1014 (diff)
downloadmonero-93972546c052d16f310d24e2c8334b1f6d4e79c7.tar.xz
Added basic docker file
finalized dockerfile
Diffstat (limited to '')
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1f3e7dced..19f2ffe26 100644
--- a/README.md
+++ b/README.md
@@ -65,8 +65,18 @@ Packages are available for
* OS X via [Homebrew](http://brew.sh)
- brew tap sammy007/cryptonight
- brew install bitmonero --build-from-source
+ brew tap sammy007/cryptonight
+ brew install bitmonero --build-from-source
+
+* Docker
+
+ docker build -t monero .
+
+ # either run in foreground
+ docker run -it -v /bitmonero/chain:/root/.bitmonero -v /bitmonero/wallet:/wallet -p 18080:18080 monero
+
+ # or in background
+ docker run -it -d -v /bitmonero/chain:/root/.bitmonero -v /bitmonero/wallet:/wallet -p 18080:18080 monero
Packaging for your favorite distribution would be a welcome contribution!