mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 12:01:12 +00:00
6226737f5c
* 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>
24 lines
433 B
YAML
24 lines
433 B
YAML
version: '3'
|
|
services:
|
|
polkadot:
|
|
ports:
|
|
- "127.0.0.1:30333:30333/tcp"
|
|
- "127.0.0.1:9933:9933/tcp"
|
|
image: parity/polkadot:latest
|
|
volumes:
|
|
- "polkadot-data:/data"
|
|
command: |
|
|
--unsafe-rpc-external
|
|
--unsafe-ws-external
|
|
--rpc-cors all
|
|
--prometheus-external
|
|
|
|
ports:
|
|
- "30333:30333"
|
|
- "9933:9933"
|
|
- "9944:9944"
|
|
- "9615:9615"
|
|
|
|
volumes:
|
|
polkadot-data:
|