Docker image of the Burstcoin wallet. https://github.com/burst-team/burstcoin
Start Burstcoin with dafault settings:
$ docker run -p 8125:8125 -p 8123:8123 --name burstcoin blizarazu/burstcoin
- 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 setnxt.apiServerHost
andnxt.uiServerHost
to0.0.0.0
and,nxt.allowedBotHosts
andnxt.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 blizarazu/burstcoin
You can access the Wallet by opening http://localhost:8125 in your browser.