Last active
July 22, 2018 04:49
-
-
Save gravcat/a946105ba1825eca41eebf3ec96b80e1 to your computer and use it in GitHub Desktop.
docker-compose -f parity-docker-compose.yml up -d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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