File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,21 @@ This guide provides instructions for installing and running the Eliza chatbot us
102
102
- For permission issues, ensure proper file ownership and permissions
103
103
- For script formatting issues, run ` dos2unix ` on problematic files
104
104
105
+ - Remove All Docker Images
106
+ - Run the following command to delete all images:
107
+ ``` bash
108
+ docker rmi -f $( docker images -aq)
109
+ ```
110
+ - Remove All Build Cache
111
+ - To clear the build cache entirely, use:
112
+ ``` bash
113
+ docker builder prune -a -f
114
+ ```
115
+ - Verify Cleanup
116
+ - Check Docker disk usage again to ensure everything is removed:
117
+ ``` bash
118
+ docker system df
119
+ ```
105
120
## License
106
121
107
122
This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
You can’t perform that action at this time.
0 commit comments