Skip to content

Instantly share code, notes, and snippets.

@gravcat
Last active July 22, 2018 04:49
Show Gist options
  • Save gravcat/a946105ba1825eca41eebf3ec96b80e1 to your computer and use it in GitHub Desktop.
Save gravcat/a946105ba1825eca41eebf3ec96b80e1 to your computer and use it in GitHub Desktop.
docker-compose -f parity-docker-compose.yml up -d
version: '3.1'
volumes:
parity:
services:
parity:
image: parity/parity:stable
container_name: parity
volumes:
- parity:/data
command: --mode active --chain foundation --base-path /data --ports-shift=0 --no-ui --jsonrpc-threads 2 --jsonrpc-server-threads 2 --jsonrpc-interface all --no-ws --no-dapps --tracing on --pruning fast
ports:
- 30303:30303
- 8545:8545
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment