From 365e6cc534350c0a1133df2b298daa37e23b3cb5 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Thu, 25 Aug 2022 08:57:30 +0200 Subject: [PATCH] Mention Docker disk usage in the install guide --- docs/install.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/install.md b/docs/install.md index f18fe40..bbf3bce 100644 --- a/docs/install.md +++ b/docs/install.md @@ -55,6 +55,12 @@ docker compose stop docker compose up -d ``` +As you probably already know, Docker can (and will) eat a lot of disk space, when updating you should [prune old images](https://docs.docker.com/config/pruning/#prune-images) from time to time: + +```bash +docker image prune -a --filter "until=24h" +``` + ## Python developer edition Assuming you have a working **Python 3.10+** environment.