This repository contains Docker Compose configurations for setting up a local development environment with various services including Kafka, PostgreSQL, and ClickHouse.
- Clone this repository
- Navigate to the specific service directory you want to start
- Run the following command:
docker-compose up -dcd docker/kafka
docker-compose up -dAccess AKHQ UI at http://localhost:9090
cd docker/postgres
docker-compose up -dConnect to the database using:
- Host: localhost
- Port: 5432
- Database: postgres
- Username: user
- Password: password
cd docker/clickhouse
docker-compose up -dAccess ClickHouse:
- Native protocol: localhost:9000
- HTTP interface: http://localhost:8123
cd docker/opensearch
docker-compose up -dAccess OpenSearch at https://localhost:9200
Access OpenSearch Dashboard at http://localhost:5601
- All services are configured with
restart: unless-stoppedpolicy - 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