Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(compose): add ch-ui #1748

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,20 @@ Run linters:
make lint
```

### Tools

Run Docker Compose with dev profile to enable UI for Kafka and ClickHouse:

```sh
docker compose --profile dev up
```

If you are seeing ghcr.io denied error, login to ghcr.io using a GitHub personal access token:

```sh
docker login ghcr.io
```

## Roadmap

Visit our website at [https://openmeter.io](https://openmeter.io#roadmap) for our public roadmap.
Expand Down
15 changes: 15 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,21 @@ services:
timeout: 3s
retries: 30


ch-ui:
image: ghcr.io/caioricciuti/ch-ui:latest
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

they don't tag their releases

profiles:
- dev
depends_on:
- clickhouse
restart: always
ports:
- "${CH_UI_PORT:-5521}:5521"
environment:
VITE_CLICKHOUSE_URL: http://localhost:8123
VITE_CLICKHOUSE_USER: default
VITE_CLICKHOUSE_PASS: default

# Deduplication
# docker compose --profile redis up
redis:
Expand Down