# deploy **Repository Path**: xpp/deploy ## Basic Information - **Project Name**: deploy - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: Fix/adding-scripts-to-dashboard-example - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-02 - **Last Updated**: 2025-08-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Deploying Hummingbot with Docker ## Intro This repository provides various examples of how to deploy Hummingbot using Docker Compose. [Hummingbot](https://github.com/hummingbot/hummingbot) is an open source framework that helps you build automated trading strategies, or bots that run on cryptocurrency exchanges, and [Docker Compose](https://docs.docker.com/compose/) is a tool for defining and running multi-container Docker applications It also contains standalone bash scripts that assist you to setting up Hummingbot with Docker, but we recommend using Docker Compose instead. See [Docker](./DOCKER.md) for more information about how to install and use Docker. ## How do I use this repo? Each folder showcases a different deployment type using Docker Compose, such as: * A single Hummingbot instance along with a dashboard that analyzes it * A single Hummingbot instance that auto-starts a strategy or script * Linked Hummingbot and Gateway instances * Multiple instances of Hummingbot The important files in each folder are: * `docker-compose.yml`: A sample configuration file for that deployment type. * `README.md`: A detailed README file that guides users through the steps required to deploy Hummingbot using Docker, including how to build and run the containers, how to configure the bot, and how to monitor its performance. After you have configured it properly, each deployment can be launched with the command: ``` docker compose up -d ``` ## Deployment types using Docker Compose ### [Hummingbot with Dashboard](./hummingbot_with_dashboard) ⭐️⭐️⭐️ We recommend that new Hummingbot users follow this route ⭐️⭐️⭐️ This installs a single [Hummingbot](https://github.com/hummingbot/hummingbot) instance with a companion [Hummingbot Dashboard](https://github.com/hummingbot/dashboard) running. ### [Simple Hummingbot Compose](./simple_hummingbot_compose) This installs a single [Hummingbot](https://github.com/hummingbot/hummingbot) instance as a Docker container. ### [Autostart Hummingbot Compose](./autostart_hummingbot_compose) This installs a single [Hummingbot](https://github.com/hummingbot/hummingbot) instance as a Docker container and automatically starts running a pre-configured script or strategy. ### [Hummingbot Gateway Compose](./hummingbot_gateway_compose) This installs a [Hummingbot](https://github.com/hummingbot/hummingbot) instance linked to a [Hummingbot Gateway](https://github.com/hummingbot/gateway) instance. ### [Multiple Hummingbot Gateway Compose](./multiple_hummingbot_gateway_compose) This installs two [Hummingbot](https://github.com/hummingbot/hummingbot) instances, linked to a single [Hummingbot Gateway](https://github.com/hummingbot/gateway) instance. ### [Hummingbot Gateway Broker Compose](./hummingbot_gateway_broker_compose) This installs a [Hummingbot](https://github.com/hummingbot/hummingbot) instance linked to a [Hummingbot Gateway](https://github.com/hummingbot/gateway) instance, along with an EMQX [Broker](https://github.com/hummingbot/brokers). !!! note "Experimental deployment" This deployment is still undergoing testing, so we recommend using the standalone deployments for message brokers from the [hummingbot/brokers](https://github.com/hummingbot/brokers) repository. ## [Bash scripts (older)](./bash_scripts) These standalone bash scripts can also assist you to setting up Hummingbot and Gateway with Docker, but we recommend using Docker Compose instead. The following operations are possible using the bash scripts: - Create a Hummingbot container - Update the Hummingbot image version - Start a stopped container of Hummingbot - Create a Gateway container - Copy the certificates to the corresponding gateway path ## Other Hummingbot Repos * [Hummingbot Docs](https://github.com/hummingbot/hummingbot-site): Official documentation for Hummingbot - we welcome contributions here too! * [Awesome Hummingbot](https://github.com/hummingbot/awesome-hummingbot): All the Hummingbot links * [Hummingbot StreamLit Apps](https://github.com/hummingbot/streamlit-apps): Hummingbot-related StreamLit data apps and dashboards * [Community Tools](https://github.com/hummingbot/community-tools): Community contributed resources related to Hummingbot * [Brokers](https://github.com/hummingbot/brokers): Different brokers that can be used to communicate with multiple instances of Hummingbot * [Deploy Examples](https://github.com/hummingbot/deploy-examples): Deploy Hummingbot in various configurations with Docker * [Remote Client](https://github.com/hummingbot/hbot-remote-client-py): A remote client for Hummingbot in Python ## Contributions Hummingbot belongs to its community, so we welcome contributions! Users are encouraged to submit pull requests with their own examples and use cases for deploying Hummingbot with Docker.