Created
November 8, 2018 13:54
-
-
Save dhrp/25376272919f80e89d1f000e1f56a3c8 to your computer and use it in GitHub Desktop.
docker-compose file to reproduce the error.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
geth: | |
container_name: configurator_api | |
image: dhrp/aws_gethdaemon:source | |
command: | |
- "--nodiscover" | |
- "--peer-table-name" | |
- "eth-auto-EthereumCommonStack-YUOAW65KR29A-EthereumECSStack-G0RBZQHB26EZ-DynamoPeerTable-XSXJRR6DAIOV" | |
- "--networkid" | |
- "1234" | |
- "--initial-difficulty" | |
- "1" | |
- "--log-level" | |
- "info" | |
- "--rpc" | |
- "--rpcapi" | |
- "web3,net,eth" | |
- "--mine" | |
- "--minerthreads" | |
- "1" | |
- "--etherbase" | |
- "0x117DFa5C2BF3f0Bacc97e4e32C1fDDdD63d59001" | |
- "--funded-accounts" | |
- "0x605e0421276A78Ae7132Addb59372c46D1302000" | |
- "--targetgaslimit" | |
- "8000000" | |
- "--initial-block-gas-limit" | |
- "8000000" | |
- "--initial-account-balance" | |
- "1000" | |
- "--gasprice" | |
- "0" | |
- "--ethstats-ws-url ws://internal-eth-a-LoadB-XBE0B9RHPQ46-397404776.us-east-1.elb.amazonaws.com --ethstats-ws-secret duplo12345" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment