Skip to content

Instantly share code, notes, and snippets.

@fkfk
Last active March 9, 2018 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkfk/566830bb0661ee216f1d279d9ec6a9eb to your computer and use it in GitHub Desktop.
Save fkfk/566830bb0661ee216f1d279d9ec6a9eb to your computer and use it in GitHub Desktop.
Electrumx Server for Koto
version: '2'
services:
kotod:
image: fkfk/koto
environment:
RPCUSER: user
RPCPASSWORD: <your_password>
RPCALLOWIP: "172.0.0.0/8"
volumes:
- kotod_data:/var/lib/koto/data
electrum-koto:
image: fkfk/electrumx
links:
- kotod:kotod
environment:
RPC_HOST: 0.0.0.0
DAEMON_URL: "http://user:<your_password>@kotod:8432"
COIN: Koto
DONATION_ADDRESS: <your_koto_address>
PEER_DISCOVERY: "true"
REPORT_HOST: <your_hostname>
REPORT_TCP_PORT: 50001
REPORT_SSL_PORT: 50002
ports:
- "50001:50001"
- "50002:50002"
volumes:
- electrumx_koto_data:/data
volumes:
kotod_data:
driver_opts:
type: none
device: </path/to/koto_datadir>
o: bind
electrumx_koto_data:
driver_opts:
type: none
device: </path/to/electrumx_dir>
o: bind
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment