Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.29 KB

File metadata and controls

58 lines (48 loc) · 1.29 KB

Local Development Environment

This repository contains Docker Compose configurations for setting up a local development environment with various services including Kafka, PostgreSQL, and ClickHouse.

Getting Started

  1. Clone this repository
  2. Navigate to the specific service directory you want to start
  3. Run the following command:
docker-compose up -d

Service-Specific Instructions

Kafka

cd docker/kafka
docker-compose up -d

Access AKHQ UI at http://localhost:9090

PostgreSQL

cd docker/postgres
docker-compose up -d

Connect to the database using:

  • Host: localhost
  • Port: 5432
  • Database: postgres
  • Username: user
  • Password: password

ClickHouse

cd docker/clickhouse
docker-compose up -d

Access ClickHouse:

OpenSearch

cd docker/opensearch
docker-compose up -d

Access OpenSearch at https://localhost:9200
Access OpenSearch Dashboard at http://localhost:5601

Notes

  • All services are configured with restart: unless-stopped policy
  • Services are isolated in their own networks
  • Default configurations are suitable for local development
  • For production use, please review and adjust security settings
  • This file is generated using AI