feat(01-01): add ClickHouse dependencies, Docker Compose, schema, and app config
- Add clickhouse-jdbc, springdoc-openapi, actuator, testcontainers deps
- Add slf4j-api to core module
- Create Docker Compose with ClickHouse service on ports 8123/9000
- Create ClickHouse DDL: route_executions, route_diagrams, agent_metrics
- Configure application.yml with datasource, ingestion buffer, springdoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 11:47:20 +01:00
|
|
|
services:
|
2026-03-17 00:26:50 +01:00
|
|
|
postgres:
|
|
|
|
|
image: timescale/timescaledb-ha:pg16
|
feat(01-01): add ClickHouse dependencies, Docker Compose, schema, and app config
- Add clickhouse-jdbc, springdoc-openapi, actuator, testcontainers deps
- Add slf4j-api to core module
- Create Docker Compose with ClickHouse service on ports 8123/9000
- Create ClickHouse DDL: route_executions, route_diagrams, agent_metrics
- Configure application.yml with datasource, ingestion buffer, springdoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 11:47:20 +01:00
|
|
|
ports:
|
2026-03-17 00:26:50 +01:00
|
|
|
- "5432:5432"
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_DB: cameleer3
|
|
|
|
|
POSTGRES_USER: cameleer
|
|
|
|
|
POSTGRES_PASSWORD: cameleer_dev
|
feat(01-01): add ClickHouse dependencies, Docker Compose, schema, and app config
- Add clickhouse-jdbc, springdoc-openapi, actuator, testcontainers deps
- Add slf4j-api to core module
- Create Docker Compose with ClickHouse service on ports 8123/9000
- Create ClickHouse DDL: route_executions, route_diagrams, agent_metrics
- Configure application.yml with datasource, ingestion buffer, springdoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 11:47:20 +01:00
|
|
|
volumes:
|
2026-03-17 00:26:50 +01:00
|
|
|
- pgdata:/home/postgres/pgdata/data
|
|
|
|
|
|
|
|
|
|
opensearch:
|
|
|
|
|
image: opensearchproject/opensearch:2.19.0
|
|
|
|
|
ports:
|
|
|
|
|
- "9200:9200"
|
|
|
|
|
- "9300:9300"
|
feat(01-01): add ClickHouse dependencies, Docker Compose, schema, and app config
- Add clickhouse-jdbc, springdoc-openapi, actuator, testcontainers deps
- Add slf4j-api to core module
- Create Docker Compose with ClickHouse service on ports 8123/9000
- Create ClickHouse DDL: route_executions, route_diagrams, agent_metrics
- Configure application.yml with datasource, ingestion buffer, springdoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 11:47:20 +01:00
|
|
|
environment:
|
2026-03-17 00:26:50 +01:00
|
|
|
discovery.type: single-node
|
|
|
|
|
DISABLE_SECURITY_PLUGIN: "true"
|
|
|
|
|
OPENSEARCH_JAVA_OPTS: "-Xms512m -Xmx512m"
|
|
|
|
|
volumes:
|
|
|
|
|
- osdata:/usr/share/opensearch/data
|
feat(01-01): add ClickHouse dependencies, Docker Compose, schema, and app config
- Add clickhouse-jdbc, springdoc-openapi, actuator, testcontainers deps
- Add slf4j-api to core module
- Create Docker Compose with ClickHouse service on ports 8123/9000
- Create ClickHouse DDL: route_executions, route_diagrams, agent_metrics
- Configure application.yml with datasource, ingestion buffer, springdoc
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 11:47:20 +01:00
|
|
|
|
|
|
|
|
volumes:
|
2026-03-17 00:26:50 +01:00
|
|
|
pgdata:
|
|
|
|
|
osdata:
|