Guest User

Untitled

a guest
Apr 27th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. # basenode:
  5. # build: ./base
  6. # stdin_open: true
  7. # tty: true
  8. masternode:
  9. image: kunstmaan/master-multichain
  10. stdin_open: true
  11. tty: true
  12. ports:
  13. - "7557:7557"
  14. - "8002:8002"
  15. environment:
  16. CHAINNAME: SamChain
  17. NETWORK_PORT: 7557
  18. RPC_PORT: 8002
  19. RPC_USER: multichainrpc
  20. RPC_PASSWORD: this-is-insecure-change-it
  21. RPC_ALLOW_IP: 0.0.0.0/0.0.0.0
  22. PARAM_TARGET_BLOCK_SIZE: target-block-time|30
  23. PARAM_ANYONE_CAN_CONNECT: anyone-can-connect|true
  24. PARAM_ANYONE_CAN_MINE: anyone-can-mine|true
  25. explorernode:
  26. image: kunstmaan/explorer-multichain
  27. stdin_open: true
  28. tty: true
  29. ports:
  30. - "2750:2750"
  31. - 7557
  32. - 8002
  33. environment:
  34. CHAINNAME: SamChain
  35. NETWORK_PORT: 7557
  36. RPC_PORT: 8002
  37. RPC_USER: multichainrpc
  38. RPC_PASSWORD: this-is-insecure-change-it
  39. RPC_ALLOW_IP: 0.0.0.0/0.0.0.0
  40. MASTER_NODE: masternode
  41. links:
  42. - masternode
  43. depends_on:
  44. - masternode
Add Comment
Please, Sign In to add comment