8000 GitHub - Mambix/ethcore
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Mambix/ethcore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Supported tags and respective Dockerfile links

Ethereum v1.8.13

Ethcore

Infrastructure to build Ethereum and blockchain-based applications for the next generation of financial technology.

Links:

Running the container

Create a volume where all data and blockchain data will be stored:

docker volume create --name ethcore_data

Now run the container, publishing ports 8545 (for RPC) and 30303 (for ethereum network).

docker run -d --restart=always --name ethcore \
   -p 8545:8545 -p 30303:30303 \
   -v ethcore_data:/root/.ethereum \
   mambix/ethcore

Aditional parameters

You can add aditional command line geth parameters by specifying GETH_CMD_PARAMS enviroment variable.

For example:

docker run -d --restart=always --name ethcore \
   -p 8545:8545 -p 30303:30303 \
   -v ethcore_data:/root/.ethereum \
   -e GETH_CMD_PARAMS="--http.addr 0.0.0.0 --cache 4096 --maxpeers 10" \
   mambix/ethcore

Running goerli testnet

docker run -d --restart=always --name ethcore_goerli \
   -p 8546:8546 -p 30304:30304 \
   -v ethcore_goerli_data:/root/.ethereum/goerli \
   -e GETH_CMD_PARAMS="--goerli --port 30304 --http.addr 0.0.0.0 --http.port 8546 --cache 4096 --maxpeers 10" \
   mambix/ethcore

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0