mirror of
https://github.com/d0zingcat/deploy.git
synced 2026-05-14 07:26:43 +00:00
added update instructions to readme
This commit is contained in:
@@ -71,3 +71,35 @@ To get started with Hummingbot, check out the following docs:
|
||||
* [Basic Features](https://docs.hummingbot.org/operation/)
|
||||
* [Quickstart Guide](https://docs.hummingbot.org/quickstart/)
|
||||
* [Hummingbot FAQ](https://docs.hummingbot.org/faq/)
|
||||
|
||||
## Updating to the Latest Version of Hummingbot
|
||||
|
||||
Hummingbot and Hummingbot Gateway are updated on a monthly basis, with each new version marked by a code release on Github and DockerHub, accompanied by the publication of comprehensive release notes. To upgrade to the most recent version, you just need to pull the `latest` Docker images.
|
||||
|
||||
Follow the steps below to upgrade your Hummingbot system:
|
||||
|
||||
1. **Ensure no containers are running**
|
||||
|
||||
Before you initiate the update process, it is crucial to verify that no Docker containers are currently running. Use the following command to shut down any active containers:
|
||||
|
||||
```
|
||||
docker compose down
|
||||
```
|
||||
|
||||
2. **Fetch the latest Docker image**
|
||||
|
||||
Once you have confirmed that no containers are running, proceed to pull the latest Docker image. Use the following command to accomplish this:
|
||||
|
||||
```
|
||||
docker pull hummingbot/hummingbot
|
||||
```
|
||||
|
||||
3. **Start the updated containers**
|
||||
|
||||
Having pulled the latest Docker image, you can now start up your containers. They will be running the latest version of Hummingbot. Use the following command to start the containers:
|
||||
|
||||
```
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
With these steps, you will have successfully updated your Hummingbot to the latest version.
|
||||
Reference in New Issue
Block a user