1c0e57d984
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
130 lines
2.6 KiB
YAML
130 lines
2.6 KiB
YAML
version: '3.7'
|
|
services:
|
|
node_alice:
|
|
image: "pezkuwi:${BRANCH:-pezcumulus-branch}"
|
|
ports:
|
|
- "30333:30333"
|
|
- "9933:9933"
|
|
- "9944:9944"
|
|
volumes:
|
|
- "pezkuwi-data-alice:/data"
|
|
- type: bind
|
|
source: ./test/teyrchain/chain-specs/pezkuwi_chainspec.json
|
|
target: /chainspec.json
|
|
read_only: true
|
|
command: >
|
|
pezkuwi
|
|
--chain=/chainspec.json
|
|
--base-path=/data
|
|
--port 30333
|
|
--rpc-port 9933
|
|
--ws-port 9944
|
|
--rpc-external
|
|
--rpc-cors all
|
|
--ws-external
|
|
--alice
|
|
networks:
|
|
testing_net:
|
|
ipv4_address: 172.28.1.1
|
|
aliases:
|
|
- alice
|
|
|
|
node_bob:
|
|
image: "pezkuwi:${BRANCH:-pezcumulus-branch}"
|
|
ports:
|
|
- "30344:30333"
|
|
- "9935:9933"
|
|
- "9945:9944"
|
|
volumes:
|
|
- "pezkuwi-data-bob:/data"
|
|
- type: bind
|
|
source: ./test/teyrchain/chain-specs/pezkuwi_chainspec.json
|
|
target: /chainspec.json
|
|
read_only: true
|
|
command: >
|
|
pezkuwi
|
|
--chain=/chainspec.json
|
|
--base-path=/data
|
|
--port 30333
|
|
--rpc-port 9933
|
|
--ws-port 9944
|
|
--rpc-external
|
|
--ws-external
|
|
--rpc-cors all
|
|
--bob
|
|
networks:
|
|
testing_net:
|
|
ipv4_address: 172.28.1.2
|
|
aliases:
|
|
- bob
|
|
|
|
genesis_state:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dockerfiles/test-teyrchain-collator.Dockerfile
|
|
image: "ctpc:latest"
|
|
volumes:
|
|
- "genesis-state:/data"
|
|
command: >
|
|
pezkuwi-teyrchain
|
|
export-genesis-state
|
|
/data/genesis-state
|
|
|
|
collator:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dockerfiles/test-teyrchain-collator.Dockerfile
|
|
target: collator
|
|
image: "ctpc:collator"
|
|
volumes:
|
|
- "collator-data:/data"
|
|
depends_on:
|
|
- node_alice
|
|
- node_bob
|
|
command: >
|
|
inject_bootnodes.sh
|
|
--base-path=/data
|
|
networks:
|
|
testing_net:
|
|
|
|
runtime:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dockerfiles/test-teyrchain-collator.Dockerfile
|
|
target: runtime
|
|
image: "ctpc:runtime"
|
|
volumes:
|
|
- "teyrchain-runtime:/runtime"
|
|
|
|
|
|
registrar:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dockerfiles/teyrchain-registrar.Dockerfile
|
|
image: para-reg:latest
|
|
volumes:
|
|
- "genesis-state:/genesis"
|
|
- "teyrchain-runtime:/runtime"
|
|
depends_on:
|
|
- node_alice
|
|
- runtime
|
|
- genesis_state
|
|
networks:
|
|
testing_net:
|
|
|
|
|
|
volumes:
|
|
pezkuwi-data-alice:
|
|
pezkuwi-data-bob:
|
|
collator-data:
|
|
genesis-state:
|
|
teyrchain-runtime:
|
|
|
|
|
|
networks:
|
|
testing_net:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.28.0.0/16
|