> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect via UI

You can use the web UI interface to work with Firebolt Core.

## Prerequisites

* Firebolt Core running locally

## Installation

Download the core UI docker image

```shell theme={"theme":{"light":"github-light","dark":"github-dark"}}
docker pull ghcr.io/firebolt-db/firebolt-core-ui
```

NOTE: this image is currently available only for the `amd64` architecture.

## Connection

Run the UI container, linking it to your Firebolt Core instance:

#### Macos and Windows

```shell theme={"theme":{"light":"github-light","dark":"github-dark"}}
docker run --name firebolt-core-ui -p 9100:9100 -e FIREBOLT_CORE_URL=http://host.docker.internal:3473 ghcr.io/firebolt-db/firebolt-core-ui
```

#### Linux

```shell theme={"theme":{"light":"github-light","dark":"github-dark"}}
docker run --network=host --name firebolt-core-ui -p 9100:9100 -e FIREBOLT_CORE_URL=http://localhost:3473 ghcr.io/firebolt-db/firebolt-core-ui
```

Open your browser and navigate to `http://localhost:9100`
