> For the complete documentation index, see [llms.txt](https://hi-primus.gitbook.io/bumblebee/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hi-primus.gitbook.io/bumblebee/install-bumblebee/install-via-docker.md).

# Install via Docker

To run Bumblebee using a Docker Image on any infrastructure you can use Docker Hub. From a remote server (hosting externally):

```
docker run --name bumblebee --network="host" -e ADDRESS=<IP> ironmussa/bumblebee:develop-3.0
```

Or from your local machine (using localhost):

```
docker run --name bumblebee -p 3000:3000 -p 4000:4000 -e ADDRESS=localhost ironmussa/bumblebee:develop-3.0
```

For `--name` you can use any name you want for your environment and on `ADDRESS=<IP>` you must input the public IP address of your server. Remember to open ports `3000` and `4000` on your host. Please have in mind the host networking driver only works on Linux hosts, and is not supported on Docker Desktop for Mac, Docker Desktop for Windows, or Docker EE for Windows Server. To just pull the image without running it you can use:

```
docker pull ironmussa/bumblebee:develop-3.0
```

## Adding Spark support (Experimental)

To enable Spark support, replace `ironmussa/bumblebee:develop-3.0` by `ironmussa/bumblebee:develop-3.0-spark`. ‌


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hi-primus.gitbook.io/bumblebee/install-bumblebee/install-via-docker.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
