Tools, FAQ, Tutorials:
Clean Up Docker Engine for WYFA
How to Clean Up Docker Engine to run the WYFA (Writing Your First Application) tutorial?
✍: FYIcenter.com
You can follow these steps to
setup the Clean Up Docker Engine
to run the WYFA (Writing Your First Application) tutorial.
1. Stop existing Hyperledger Fabric Networks on your local host by stopping all Docker containers:
$ docker stop $(docker ps -aq)
2. You may want to remove all data of existing Hyperledger Fabric Networks, if you are running out of disk space by removing all stopped containers:
$ docker rm -f $(docker ps -aq)
2. You may also want to remove all container images left from previous tests of WYFA:
$ docker rmi -f $(docker images | grep fabcar | awk '{print $3}')
Â
⇠Objectives of WYFA tutorials
⇑ WYFA (Writing Your First Application)
⇑⇑ Hyperledger Tutorials
2020-02-29, 819👍, 0💬
Popular Posts:
How to Create a New Instance of a Class? There are two ways to create a new instance (object) of a c...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are ru...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
What Is the 2017 Version of Azure API Management Service? The 2017 Version of Azure API Management a...