Skip to content

Commit

Permalink
Merge pull request #826 from Freytes/patch-2
Browse files Browse the repository at this point in the history
fix: docker-setup.md
  • Loading branch information
shakkernerd authored Dec 4, 2024
2 parents 9ff30c5 + 9a77ff7 commit 7c93797
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/docs/guides/docker-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,21 @@ This guide provides instructions for installing and running the Eliza chatbot us
- For permission issues, ensure proper file ownership and permissions
- For script formatting issues, run `dos2unix` on problematic files

- Remove All Docker Images
- Run the following command to delete all images:
```bash
docker rmi -f $(docker images -aq)
```
- Remove All Build Cache
- To clear the build cache entirely, use:
```bash
docker builder prune -a -f
```
- Verify Cleanup
- Check Docker disk usage again to ensure everything is removed:
```bash
docker system df
```
## License

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

0 comments on commit 7c93797

Please sign in to comment.