https://github.com/jeshan/bitcore-node
Image to run a bitcore wallet service that connects to either testnet or livenet using bitcore
https://github.com/jeshan/bitcore-node
bitcore dockerfile wallet-service
Last synced: about 1 month ago
JSON representation
Image to run a bitcore wallet service that connects to either testnet or livenet using bitcore
- Host: GitHub
- URL: https://github.com/jeshan/bitcore-node
- Owner: jeshan
- License: bsd-2-clause
- Created: 2017-05-11T07:54:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T21:41:44.000Z (about 4 years ago)
- Last Synced: 2025-04-21T23:48:12.187Z (about 1 month ago)
- Topics: bitcore, dockerfile, wallet-service
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 6
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
There are some pain points in installing the bitcore wallet service *and* making it connect to a node that you control.
(e.g this issue: https://github.com/bitpay/bitcore-wallet-service/issues/643)I have created this image to solve this.
Installs:
* insight UI
* insight APITo run an image for testnet (the default):
`docker run --restart=unless-stopped -d --network=host -v /root/bitcoin-node --name livenet jeshan/bitcore-node`
To run an image for livenet, specify an environment variable *BITCOIN_NETWORK* with value *livenet*:
`docker run --env BITCOIN_NETWORK=livenet --restart=unless-stopped -d --network=host -v /root/bitcoin-node --name livenet jeshan/bitcore-node`
Dockerfile available at:
https://github.com/jeshan/bitcore-node