2.2 KiB
2.2 KiB
Electrum Container
About
A containerized Electrum server powered by Electrs. This server will allow you to connect Electrum wallets to your Bitcoin node.
See the container registry for a list of available versions.
Requirements
Usage
To run with podman run
:
podman run -p 50001:50001 -v ./electrum/db:/electrs/db -v ./bitcoin-core/.bitcoin:/electrs/.bitcoin:ro code.fosterhangdaan.com/foster/electrum-container:0.10
Or define a compose.yaml
file:
version: "3.8"
services:
electrum:
container_name: electrum
image: code.fosterhangdaan.com/foster/electrum-container:0.10
restart: unless-stopped
volumes:
# Database store
- ./electrum/db:/electrs/db
# Mount the blockchain from Bitcoin Core
- ./bitcoin-core/.bitcoin:/electrs/.bitcoin:ro
ports:
- 50001:50001
Building
To build the image:
cd /path/to/electrum-container
podman build -t electrs .
Contributing
Please send patches and bug reports by email to one of the maintainers. See the Core Maintainers section for a list of contacts.
Refer to this guide if you are not familiar with sending Git patches over email.
Core Maintainers
-
Foster Hangdaan
- Website: www.fosterhangdaan.com
- Email: foster@hangdaan.email
- GPG Public Key: DBD3 8E38 4B9E 1F4F 19F9 5BAE E48D 7F49 A852 F112
- OpenAlias:
pay.fosterhangdaan.com
License
Licensed under the Apache License, Version 2.0; see LICENSE.md for details.
Copyright
Copyright 2023 Foster Hangdaan