mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-06-11 07:26:49 +00:00
fix typo
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user