docker-compose up -d
docker-compose exec parity /parity/parity signer new-token | grep http
# browse to url
Created
August 15, 2017 19:11
-
-
Save timstott/37780d4eccaf53467386f8d61a1b28b4 to your computer and use it in GitHub Desktop.
Run Ethereum Parity with Docker
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" | |
services: | |
parity: | |
image: parity/parity:v1.7.0 | |
ports: | |
- 8180:8180 | |
- 8546:8546 | |
- 30303:30303 | |
- 30303:30303/udp | |
command: --ui-interface all --jsonrpc-interface all --ui-no-validation --force-ui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment