| Field | Value |
|---|---|
| Mode | docker |
| Flavor | swarm |
| Platform | - |
Deploys SigNoz on a Docker Swarm cluster. Foundry generates a Compose file and deploys it as a stack using docker stack deploy.
- Docker Engine 20.10+ with Swarm mode initialized (
docker swarm init) - At least one manager node
apiVersion: v1alpha1
metadata:
name: signoz
spec:
deployment:
flavor: swarm
mode: dockerfoundryctl cast -f casting.yamlOr step by step:
# Generate the compose file
foundryctl forge -f casting.yaml
# Deploy manually
docker stack deploy -c pours/deployment/compose.yaml signozpours/deployment/
compose.yaml
configs/
ingester/
ingester.yaml
opamp.yaml
telemetrykeeper/
clickhousekeeper/
keeper-0.yaml
telemetrystore/
clickhouse/
config.yaml
functions.yaml
# List services in the stack
docker stack services signoz
# View logs for a service
docker service logs signoz_signoz -f
# Remove the stack
docker stack rm signozFor platform-level changes to the generated compose.yaml, use patches.