Skip to content

Instantly share code, notes, and snippets.

@yukiteruamano
Last active September 29, 2021 20:29
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 yukiteruamano/ecffe7ea8fb7b7890c2e81daba3148fa to your computer and use it in GitHub Desktop.
Save yukiteruamano/ecffe7ea8fb7b7890c2e81daba3148fa to your computer and use it in GitHub Desktop.
version: '3'
services:
# ethereum node
ethereum:
container_name: app-ethereum
image: ethereum/client-go:stable
ports:
- "8545:8545" # HTTP
- "30303:30303"
- "30303:30303/udp"
volumes:
- ./ethereum-data/.ethereum:/root/.ethereum
- ./ethereum-data/keystore:/root/.ethereum/mainnet/keystore:ro
restart: always
command: --verbosity 4 --http --http.addr "0.0.0.0" --http.corsdomain "*" --ipcdisable --syncmode "light" --cache=512
@BrianEnrique
Copy link

¿Una pregunta y para usarlo en tesnet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment