This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update `builder` image fix #9765 * fix: fix binary path * chore: refresh of the builder image + build script * Fix port * Fix image source * Update scripts/dockerfiles/polkadot/polkadot_builder.Dockerfile Co-authored-by: Denis Pisarev <denis.pisarev@parity.io>
- Loading branch information
1 parent
1a92391
commit 4870e7b
Showing
4 changed files
with
49 additions
and
32 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
version: '3' | ||
services: | ||
polkadot: | ||
build: | ||
context: . | ||
dockerfile: polkadot_builder.Dockerfile | ||
ports: | ||
- "127.0.0.1:30333:30333/tcp" | ||
- "127.0.0.1:9933:9933/tcp" | ||
image: chevdor/polkadot:latest | ||
image: parity/polkadot:latest | ||
volumes: | ||
- "polkadot-data:/data" | ||
command: polkadot | ||
command: | | ||
--unsafe-rpc-external | ||
--unsafe-ws-external | ||
--rpc-cors all | ||
--prometheus-external | ||
ports: | ||
- "30333:30333" | ||
- "9933:9933" | ||
- "9944:9944" | ||
- "9615:9615" | ||
|
||
volumes: | ||
polkadot-data: |
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