| Field | Value |
|---|---|
| Mode | docker |
| Flavor | compose |
| Platform | - |
Deploys SigNoz using Docker Compose with all Foundry defaults. This is the simplest way to run SigNoz locally or on a single node.
- Docker Engine 20.10+
- Docker Compose v2
apiVersion: v1alpha1
metadata:
name: signoz
spec:
deployment:
flavor: compose
mode: dockerThe telemetry keeper defaults to ClickHouse Keeper. To use ZooKeeper instead, set the kind and Foundry resolves the right image and configuration for it:
spec:
telemetrykeeper:
kind: zookeeper
spec:
cluster:
replicas: 1foundryctl cast -f casting.yamlOr step by step:
# Validate prerequisites
foundryctl gauge -f casting.yaml
# Generate compose files
foundryctl forge -f casting.yaml
# Start the stack
cd pours/deployment && docker compose up -dpours/deployment/
compose.yaml
configs/
ingester/
ingester.yaml
opamp.yaml
telemetrykeeper/
clickhousekeeper/
keeper-0.yaml
telemetrystore/
clickhouse/
config.yaml
functions.yaml
# Check running containers
docker ps
# View logs for a specific service
docker compose -f pours/deployment/compose.yaml logs -f signoz
# Stop the stack
cd pours/deployment && docker compose downNote
foundryctl castdetects whetherdocker compose(v2 plugin) ordocker-compose(legacy standalone) is available and uses whichever it finds, preferring the v2 plugin.
Foundry can deploy the SigNoz MCP server alongside the stack so AI clients can query your telemetry. It is disabled by default; enable it in the casting:
spec:
deployment:
mode: docker
flavor: compose
mcp:
spec:
enabled: truefoundryctl cast -f casting.yamlThis adds a signoz-mcp service on port 8000:
docker ps | grep signoz-mcp
curl -fsS localhost:8000/livez && echo " OK" # -> 200To connect an AI client (mint an API key, configure Claude Code or Claude Desktop), see MCP server.
Override component images, replicas, or environment variables in the casting spec. For platform-level changes to the generated compose.yaml (memory limits, networks, volumes), use patches.