Tools, FAQ, Tutorials:
"docker start/stop" - Start and Stop Docker Containers
How to run "docker start/stop" - Start and Stop Docker Containers for BYFN (Build Your First Network)?
✍: FYIcenter.com
If you have your BYFN Docker containers deployed to the Docker Engine,
you can use the "docker start/stop" command to manage them.
1. Look at the status of all deployed Docker containers:
$ docker ps -a IMAGE COMMAND STATUS NAMES hyperledger/fabric-tools:latest "/bin/bash" Up 10 minutes cli hyperledger/fabric-peer:latest "peer node start" Exited (1) peer0.org1.example.com hyperledger/fabric-peer:latest "peer node start" Exited (1) peer0.org2.example.com hyperledger/fabric-peer:latest "peer node start" Exited (1) peer1.org1.example.com hyperledger/fabric-peer:latest "peer node start" Exited (1) peer1.org2.example.com hyperledger/fabric-orderer:latest "orderer" Exited (1) orderer.example.com
2. Stop "cli" Docker container:
$ docker stop cli $ docker ps -a | grep cli hyperledger/fabric-tools:latest "/bin/bash" Exited (0) cli
3. Start "cli" Docker container again:
$ docker start cli cli $ docker ps -a | grep cli hyperledger/fabric-tools:latest "/bin/bash" Up 3 seconds cli
4. Start "orderer.example.com" Docker container again:
$ docker start orderer.example.com orderer.example.com $ docker ps -a | grep orderer hyperledger/fabric-orderer:latest "orderer" Exited (1) orderer.example.com
"orderer.example.com" Docker container started and stopped with an error code of 1. See next tutorial on how to fix the issue.
⇒ "docker exec -it cli bash" - BYFN CLI Shell
⇐ "docker-compose up" Command - Start the Network
2020-10-10, ∼1341🔥, 0💬
Popular Posts:
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...