Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukechilds/docker-electrum-vertcoin
Run a Vertcoin Electrum server with one command
https://github.com/lukechilds/docker-electrum-vertcoin
container crypto cryptocurrencies cryptocurrency docker electrum electrum-server electrumx ssl vertcoin vertcoind
Last synced: 2 months ago
JSON representation
Run a Vertcoin Electrum server with one command
- Host: GitHub
- URL: https://github.com/lukechilds/docker-electrum-vertcoin
- Owner: lukechilds
- License: mit
- Created: 2017-10-09T22:47:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T10:33:47.000Z (about 5 years ago)
- Last Synced: 2024-10-20T14:34:57.688Z (2 months ago)
- Topics: container, crypto, cryptocurrencies, cryptocurrency, docker, electrum, electrum-server, electrumx, ssl, vertcoin, vertcoind
- Homepage:
- Size: 6.84 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# docker-electrum-vertcoin
> Run a Vertcoin Electrum server with one command
A Docker configuration with sane defaults for running a full Vertcoin node behind an ElectrumX server.
## Usage
```
docker-compose up
```This will pull the latest version of vertcoind and ElectrumX, start syncing the blockchain, generate an SSL certificate and start listening for secure Electrum traffic on port 55002.
All blockchain/vertcoind data will be stored in `./data/vertcoind` and all ElectrumX data will be stored in `./data/electrumx`. This is stored on the host machine and mounted in the docker container as a volume, meaning it will persist across reboots/updates/containers etc.
### Is this secure?
Yep, this is built to have sensible, safe defaults out of the box. vertcoind JSON-RPC is only accessible from the ElectrumX container, it's never exposed to the internet, it's not even exposed to localhost. ElectrumX will generate a fresh SSL certificate on first boot and only listen for SSL traffic. Unencrypted traffic will be ignored.
### How do I use an existing SSL certificate?
If there's an SSL certificate/key (`electrumx.crt`/`electrumx.key`) in `./data/electrumx`, it'll be used instead of generating a new one.
### I don't trust your images, how do I build them myself?
You can build `lukechilds/vertcoind` and `lukechilds/electrumx` yourself here:
- https://github.com/lukechilds/docker-vertcoind
- https://github.com/lukechilds/docker-electrumx## License
MIT © Luke Childs