private-blockchin
docker network create --driver bridge testNet
docker inspect testNet
Change network ip in docker-compose in each node directory besu/node1, tessera/node1/config to new subnetwork ip by sequently
networks:
testNet:
ipv4_address: 172.24.0.10
And add new subnetwork in docker-compose with new subnetwork ip
networks:
testNet:
ipam:
config:
- subnet: 172.24.0.0/16
docker network prune
docker-compose up -d
docker-compose stop