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, 868👍, 0💬
Popular Posts:
How to create Hello-2.0.epub with WinRAR? I have all required files to create Hello-2.0.epub. To cre...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
How To Submit Values without Using a Form in PHP? If you know the values you want to submit, you can...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...