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 -d
cd docker/kafka
docker-compose up -d
Access AKHQ UI at http://localhost:9090
cd docker/postgres
docker-compose up -d
Connect to the database using:
- Host: localhost
- Port: 5432
- Database: postgres
- Username: user
- Password: password
cd docker/clickhouse
docker-compose up -d
Access ClickHouse:
- Native protocol: localhost:9000
- HTTP interface: http://localhost:8123
- 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