mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 21:07:56 +00:00
eeb368ed9c
* add ghw and scripts for docker image deployment * debug * add permissions for content * fix path to the bin folder * add tags * rename env * fix path to docker file * make polkadot-parachain executable * fix typo * fix more typos * test * revert back use of working directory * mke bin executable in the artifacts folder * use cd instead of working directory * change path to cash * fix path to cash * change cache key * delete old flows * addressed PR comments * fix path * reorg docker files
51 lines
1.0 KiB
YAML
51 lines
1.0 KiB
YAML
version: '3'
|
|
services:
|
|
node_alice:
|
|
ports:
|
|
- "30333:30333"
|
|
- "9933:9933"
|
|
- "9944:9944"
|
|
- "9615:9615"
|
|
image: parity/polkadot:latest
|
|
volumes:
|
|
- "polkadot-data-alice:/data"
|
|
command: |
|
|
--chain=polkadot-local
|
|
--alice
|
|
-d /data
|
|
--node-key 0000000000000000000000000000000000000000000000000000000000000001
|
|
networks:
|
|
testing_net:
|
|
ipv4_address: 172.28.1.1
|
|
|
|
node_bob:
|
|
ports:
|
|
- "30344:30333"
|
|
- "9935:9933"
|
|
- "9945:9944"
|
|
- "29615:9615"
|
|
image: parity/polkadot:latest
|
|
volumes:
|
|
- "polkadot-data-bob:/data"
|
|
links:
|
|
- "node_alice:alice"
|
|
command: |
|
|
--chain=polkadot-local
|
|
--bob
|
|
-d /data
|
|
--bootnodes '/ip4/172.28.1.1/tcp/30333/p2p/QmRpheLN4JWdAnY7HGJfWFNbfkQCb6tFf4vvA6hgjMZKrR'
|
|
networks:
|
|
testing_net:
|
|
ipv4_address: 172.28.1.2
|
|
|
|
volumes:
|
|
polkadot-data-alice:
|
|
polkadot-data-bob:
|
|
|
|
networks:
|
|
testing_net:
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.28.0.0/16
|