Skip to content

Instantly share code, notes, and snippets.

@learner-long-life
Last active August 2, 2017 04:34
Show Gist options
  • Save learner-long-life/1395283a7c38a53d912420dc7704d66d to your computer and use it in GitHub Desktop.
Save learner-long-life/1395283a7c38a53d912420dc7704d66d to your computer and use it in GitHub Desktop.
Parity in Docker on GCP

sudo docker run -d --entrypoint /parity/parity -p 8545:8545 -p 8080:8080 -p 8180:8180 -v "/opt/blockchain/parity-kovan:/root/.local" "ethcore/parity:master" --chain=kovan --no-warp --jsonrpc-interface all --jsonrpc-hosts all --jsonrpc-cors "*" --jsonrpc-apis web3,eth,net,parity,parity_accounts,traces,rpc,parity_set,personal --ui-interface all

sudo docker run -d --entrypoint /parity/parity -p 8545:8545 -p 8080:8080 -p 8180:8180 -v "/opt/blockchain/parity-kovan:/root/.local" "ethcore/parity:master" --chain=kovan --no-warp --jsonrpc-interface all --jsonrpc-hosts all --jsonrpc-cors "*" --jsonrpc-apis "web3,eth,net,parity,parity_accounts,traces,rpc,parity_set,personal" --ui-interface all ui

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