Tools, FAQ, Tutorials:
BYFN Chaincode Docker Container
What is the BYFN chaincode Docker container?
✍: FYIcenter.com
The BYFN chaincode Docker container represents the running instance of the "mycc" chaincode.
When "mycc" chaincode is instantiated from peer0.org1, a chaincode Docker container (shim) is deployed and started on the Docker engine.
You can find chaincode containers with this command:
$ docker ps --all IMAGE STATUS NAMES dev-peer0.org1.example.com-mycc-1.0-7782... Up 2 hours dev-peer0.org1.example.com-mycc-1.0 dev-peer0.org2.example.com-mycc-1.0-7938... Up 2 hours dev-peer0.org2.example.com-mycc-1.0
You can stop it from running and start it again later:
$ docker stop dev-peer0.org1.example.com-mycc-1.0 dev-peer0.org1.example.com-mycc-1.0 $ docker star dev-peer0.org1.example.com-mycc-1.0 dev-peer0.org1.example.com-mycc-1.0
⇒ Uninstall Chaincode on BYFN Peers
⇐ Incompatible Chaincode on BYFN Peers
2020-09-15, 1085🔥, 0💬
Popular Posts:
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...