From 0e6d3fd41dceeebb2b07c19c35793b5ac2ac9247 Mon Sep 17 00:00:00 2001 From: david-hummingbot <85695272+david-hummingbot@users.noreply.github.com> Date: Tue, 19 Mar 2024 19:05:54 +0800 Subject: [PATCH] fix typo --- multiple_bots_setup/README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/multiple_bots_setup/README.md b/multiple_bots_setup/README.md index 0023357..93a82bb 100644 --- a/multiple_bots_setup/README.md +++ b/multiple_bots_setup/README.md @@ -25,7 +25,7 @@ Clone the repository to your machine and navigate to the folder: ``` git clone https://github.com/hummingbot/deploy-examples.git -cd deploy-examples/multiple_bots_setupp +cd deploy-examples/multiple_bots_setup ``` ## 2. Initial Configuration @@ -220,3 +220,22 @@ Follow the steps below to upgrade your Hummingbot system: With these steps, you will have successfully updated your Hummingbot to the latest version. +## Deleting unused Docker images + +Use the below command to manually remove unused Docker images and free up space + +``` +docker rmi [image_name] +``` + +To remove all unused images, not just dangling ones, you can use: + +``` +docker image prune -a +``` + +This command removes all images without at least one container associated with them. Use it with caution, as it can remove images that you may wish to keep. + + + +