https://github.com/bitaps-com/parity-ethereum
parity-ethereum docker image
https://github.com/bitaps-com/parity-ethereum
Last synced: 5 months ago
JSON representation
parity-ethereum docker image
- Host: GitHub
- URL: https://github.com/bitaps-com/parity-ethereum
- Owner: bitaps-com
- Created: 2019-02-06T09:42:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-28T15:11:42.000Z (over 4 years ago)
- Last Synced: 2025-08-23T10:33:01.196Z (11 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# parity-ethereum
parity-ethereum docker image
Builds: parity:latest - v2.2.9
How to use:
Create persistent volume for blockchain
$ docker volume create parity-mainnet
Start container with autostart
$ sudo docker run --name parity-mainnet \
--restart=always \
-p 18545:8545 -p 18546:8546 -p 30303:30303 \
-v parity-mainnet:/root/.local/share/io.parity.ethereum/chains/ \
-it bitaps/parity:latest \
--jsonrpc-port 8545 --jsonrpc-interface "0.0.0.0" --jsonrpc-apis "all" \
--ws-port 8546 --ws-interface "0.0.0.0"