- Set failsafe reuseForks=true to reuse JVM across IT classes (faster test suite) - Replace ClickHouse with PostgreSQL+OpenSearch in docker-compose.yml - Remove redundant docker-compose.dev.yml - Update CLAUDE.md and HOWTO.md to reflect new storage stack Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
598 B
YAML
28 lines
598 B
YAML
services:
|
|
postgres:
|
|
image: timescale/timescaledb-ha:pg16
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: cameleer3
|
|
POSTGRES_USER: cameleer
|
|
POSTGRES_PASSWORD: cameleer_dev
|
|
volumes:
|
|
- pgdata:/home/postgres/pgdata/data
|
|
|
|
opensearch:
|
|
image: opensearchproject/opensearch:2.19.0
|
|
ports:
|
|
- "9200:9200"
|
|
- "9300:9300"
|
|
environment:
|
|
discovery.type: single-node
|
|
DISABLE_SECURITY_PLUGIN: "true"
|
|
OPENSEARCH_JAVA_OPTS: "-Xms512m -Xmx512m"
|
|
volumes:
|
|
- osdata:/usr/share/opensearch/data
|
|
|
|
volumes:
|
|
pgdata:
|
|
osdata:
|