/docker-burstcoin

Docker image of the Burstcoin wallet.

Primary LanguageShell

dockeri.co

Docker image of the Burstcoin wallet. https://github.com/PoC-Consortium/burstcoin

Start Burstcoin

Start Burstcoin with dafault settings:

$ docker run -p 8125:8125 -p 8123:8123 --name burstcoin castorinop/burstcoin

Configuration and data storage

  • Create a conf directory and place your nxt-default.properties and logging-default.properties files in it. If you want to accept request from all network interfaces set nxt.apiServerHost and nxt.uiServerHost to 0.0.0.0 and, nxt.allowedBotHosts and nxt.allowedUserHosts to *:
nxt.allowedBotHosts=*
nxt.apiServerHost=0.0.0.0
nxt.allowedUserHosts=*
nxt.uiServerHost=0.0.0.0
  • Create a burst_db directory to persist the downloaded blockchain.

Mount the directories inside the conainer when you run the container.

$ docker run -p 8125:8125 -p 8123:8123 -v /my/conf:/usr/src/burstcoin/conf -v /my/burst_db:/usr/src/burstcoin/burst_db --name burstcoin castorinop/burstcoin

You can access the Wallet by opening http://localhost:8125 in your browser.