Self-hosting references

Inspect the local sources before choosing a deployment path.

The repository contains Docker Compose, Helm, and self-hosting source references. Their presence does not establish a released image or chart, a supported cluster topology, outbound-call behavior, or an isolated-environment assurance claim.

Docker Compose

A checked-in reference, not an image promise.

Review the checked-in Compose files and environment template in a private test environment. Validate every dependency, network path, volume, credential, and failure mode before use.

docker-compose.yml
# From a reviewed source checkout
cp .env.example .env

# Inspect before running
git diff -- self-hosted/ docker-compose.yml
docker compose config

# No public image or support promise is implied.
Helm source

Chart source needs environment-specific review.

A checked-in Helm directory is available for inspection. This page does not claim a published chart, supported cluster matrix, production readiness, or equivalent enforcement across platforms.

terminal
# Inspect the checked-in chart source
git ls-files helm/ self-hosted/

# Render locally before any cluster use
helm lint ./helm/agentguard
helm template agentguard ./helm/agentguard

# No hosted chart repository is claimed.

Need a private deployment boundary?

Start with the repository and verify the exact topology yourself. No paid deployment tier or isolated-environment support commitment is published here.