Skip to content

Commit 7c93797

Browse files
authored
Merge pull request #826 from Freytes/patch-2
fix: docker-setup.md
2 parents 9ff30c5 + 9a77ff7 commit 7c93797

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docs/docs/guides/docker-setup.md

+15
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,21 @@ This guide provides instructions for installing and running the Eliza chatbot us
102102
- For permission issues, ensure proper file ownership and permissions
103103
- For script formatting issues, run `dos2unix` on problematic files
104104

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+
```
105120
## License
106121

107122
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)