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, 933👍, 0💬
Popular Posts:
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
What Is session_register() in PHP? session_register() is old function that registers global variable...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...