# Standalone ClickHouse for local development against /storage in # isolation (e.g. iterating on migrations). The root-level docker-compose.yml # runs the full Phase 0 stack and defines its own clickhouse service # separately — this file is not included by it. services: clickhouse: image: clickhouse/clickhouse-server:24.8 container_name: sentry-clickhouse ports: - "8123:8123" # HTTP interface, used by migrate.sh - "9000:9000" # native protocol, used by ingest volumes: - clickhouse-data:/var/lib/clickhouse ulimits: nofile: soft: 262144 hard: 262144 volumes: clickhouse-data: