Skip to content

Instantly share code, notes, and snippets.

@reiven
Last active October 3, 2017 15:21
Show Gist options
  • Save reiven/7f1951c86a978dc809656c3d5ede6ec2 to your computer and use it in GitHub Desktop.
Save reiven/7f1951c86a978dc809656c3d5ede6ec2 to your computer and use it in GitHub Desktop.
Parity node inside docker-compose
version: '2'
services:
parity-local:
image: parity/parity:v1.6.10
working_dir: /parity/
command: --jsonrpc-interface all --jsonrpc-hosts all --jsonrpc-cors * --ui-interface 0.0.0.0 --chain dev
ports:
- 8545:8545
- 8080:8080
- 8180:8180
volumes:
- ./paritydata:/root/.local
version: '2'
services:
parity-local:
image: parity/parity:v1.7.2
working_dir: /parity/
command: --jsonrpc-interface all --jsonrpc-cors * --ui-interface all --ws-interface all --ws-origins all --chain dev
ports:
- 8545:8545
- 8546:8546
- 8180:8180
volumes:
- ./paritydata:/root/.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment