Created
May 13, 2020 17:11
-
-
Save daithi-coombes/9e0bfee96b14bc22119321b80da512e5 to your computer and use it in GitHub Desktop.
Celo accounts mainnet archive
This file contains hidden or 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.4" | |
### | |
# | |
# Prequisites: | |
# docker run --rm -it -v $PWD:/root/.celo $CELO_IMAGE init /celo/genesis.json | |
### | |
services: | |
accounts: | |
image: us.gcr.io/celo-testnet/celo-node:rc1 | |
container_name: celo-accounts | |
hostname: celo-accounts | |
env_file: './env.docker-compose' | |
ports: | |
- "0.0.0.0:8545:8545" | |
- "0.0.0.0:30303:30303" | |
- "0.0.0.0:30303:30303/udp" | |
- "0.0.0.0:30503:30503" | |
- "0.0.0.0:30503:30503/udp" | |
volumes: | |
- ./:/root/.celo | |
command: | |
- "--verbosity=3" | |
- "--networkid=42220" | |
- "--rpc" | |
- "--rpcapi=web3,eth,personal,debug,net" | |
- "--rpcaddr=0.0.0.0" | |
- "--rpcvhosts=*" | |
- "--gcmode=archive" | |
- "--bootnodes=enode://5c9a3afb564b48cc2fa2e06b76d0c5d8f6910e1930ea7d0930213a0cbc20450434cd442f6483688eff436ad14dc29cb90c9592cc5c1d27ca62f28d4d8475d932@34.82.79.155:30301" | |
- "--allow-insecure-unlock" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment