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/dec7fc74211c9d1eeee6dccec41ac603 to your computer and use it in GitHub Desktop.
Save fkfk/dec7fc74211c9d1eeee6dccec41ac603 to your computer and use it in GitHub Desktop.
ElectrumX for Mona
version: '2'
services:
monacoind:
image: fkfk/monacoin-nowallet:0.15.1
environment:
RPCUSER: user
RPCPASSWORD: <your_password>
RPCALLOWIP: "172.0.0.0/8"
volumes:
- monacoind_data:/data
electrum-mona:
image: fkfk/electrumx
links:
- monacoind:monacoind
environment:
RPC_HOST: 0.0.0.0
DAEMON_URL: "http://user:<your_password>@monacoind:9402"
COIN: Monacoin
DONATION_ADDRESS: <your_mona_address>
PEER_DISCOVERY: "true"
REPORT_HOST: <your_host>
REPORT_TCP_PORT: 50001
REPORT_SSL_PORT: 50002
ports:
- "50001:50001"
- "50002:50002"
volumes:
- electrumx_mona_data:/data
volumes:
monacoind_data:
driver_opts:
type: none
device: </path/to/mona_datadir>
o: bind
electrumx_mona_data:
driver_opts:
type: none
device: </path/to/electrumx_datadir>
o: bind
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment