Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. version: '2'
  2. services:
  3. postgres:
  4. image: postgres
  5. environment:
  6. POSTGRES_USER: postgres
  7. POSTGRES_PASSWORD: postgres
  8. POSTGRES_DB: app
  9. ports:
  10. - "5432:5432"
  11. ethermint:
  12. image: cbainnovationlab/ethermint
  13. environment:
  14. ETH_GENESIS_CONTENT: "{\"alloc\":{\"0xbfdacdfe79ccf1e61649220df47701df16606405\":{\"balance\":\"1000000000000000000000000\"}},\"coinbase\":\"0xbfdacdfe79ccf1e61649220df47701df16606405\",\"difficulty\":\"400000\",\"extraData\":\"0x0\",\"gasLimit\":\"0x80000000\",\"mixhash\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"nonce\":\"0xdeadbeefdeadbeef\",\"parentHash\":\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"timestamp\":\"0x0\"}"
  15. command: "--rpc --rpcapi \"admin,db,eth,debug,miner,net,shh,txpool,personal,web3\" --rpcaddr=\"0.0.0.0\" --rpccorsdomain=\"*\" --networkid=999999 --etherbase=\"0xbfdacdfe79ccf1e61649220df47701df16606405\" --gasprice=\"0\" --gpomin=\"0\" --targetgaslimit=\"34359738368\""
  16. ports:
  17. - "8545:8545"
  18. - "46656:46656"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement