Added basic docker file

finalized dockerfile
This commit is contained in:
eiabea 2016-08-31 18:10:44 +02:00
parent c3ba844f03
commit 93972546c0
2 changed files with 61 additions and 2 deletions

View file

@ -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!