-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Keydonix/upgrade
upgrade to parity 2.2.7
- Loading branch information
Showing
3 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM parity/parity:v1.11.1 | ||
FROM parity/parity:v2.2.7 | ||
|
||
WORKDIR / | ||
COPY dev-key.json /parity/keys/DevChain/dev-key.json | ||
COPY chain-spec.json /parity/chain-spec.json | ||
COPY config.toml /parity/config.toml | ||
RUN echo "" > /parity/password | ||
COPY dev-key.json /home/parity/keys/DevChain/dev-key.json | ||
COPY chain-spec.json /home/parity/chain-spec.json | ||
COPY config.toml /home/parity/config.toml | ||
RUN echo "" > /home/parity/password | ||
|
||
ENTRYPOINT [ "/parity/parity", "--config", "/parity/config.toml" ] | ||
ENTRYPOINT [ "/home/parity/bin/parity", "--config", "/home/parity/config.toml" ] | ||
|
||
# docker image build --tag keydonix/parity-instant-seal . | ||
# docker container run --rm -it -p 8000:8000 -p 8001:8001 -p 8545:8545 -p 8180:8180 --name parity-instant-seal keydonix/parity-instant-seal |
This file contains 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
This file contains 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