I want to restart hyperledger-composer docker containers without using startFabric.sh in order not to loose deployed networks.
Using docker-compose start under fabric-tools/fabric-scripts/hlfv11/composer directory starts all cointainers except the chaincode container dev-peer0.org1.example.com-...
When I try to start it I get this error:
[ERROR] lib/handler.js - Chat stream with peer - on error: "Error: 2 UNKNOWN: error handling message, ending stream: transition canceled with error: peer will not accept external chaincode connection name:\"default:0.0.1\" (except in dev mode)
So I try
docker-compose -f docker-compose-dev.yml start
and then
docker start .... (the dev container)
But still the same error
¿Any ideas?