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
2020-02-29, ∼1474🔥, 0💬
Popular Posts:
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
Tools, FAQ, Tutorials: JSON Validator JSON-XML Converter XML-JSON Converter JSON FAQ/Tutorials Pytho...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...