Documentation
PolicyCortex Deployment Options: SaaS, Docker & Kubernetes
PolicyCortex offers multiple deployment options to fit your infrastructure needs.
PolicyCortex Installation Docs & Quick Start Guide
Cloud SaaS
The fastest way to get started. No installation required, enterprise-grade security included.
✓ Recommended for most teams
- • Zero infrastructure management
- • Automatic updates and patches
- • 99.9% uptime SLA
- • SOC2 Type II compliant
Self-Hosted Docker
Deploy PolicyCortex in your own infrastructure for complete control and customization.
Docker Installationbash
# Pull the latest PolicyCortex image
docker pull policycortex/platform:latest
# Create a volume for persistent data
docker volume create policycortex-data
# Run PolicyCortex container
docker run -d \
--name policycortex \
-p 8080:8080 \
-p 8443:8443 \
-v policycortex-data:/data \
-e LICENSE_KEY=your_license_key \
-e DB_CONNECTION_STRING=postgresql://user:pass@db:5432/policycortex \
-e REDIS_URL=redis://redis:6379 \
policycortex/platform:latest
# Check container status
docker logs policycortexKubernetes Deployment
Enterprise-grade deployment with Helm charts for scalability and high availability.
Helm Installationbash
# Add PolicyCortex Helm repository
helm repo add policycortex https://charts.policycortex.com
helm repo update
# Create namespace
kubectl create namespace policycortex
# Install with custom values
helm install policycortex policycortex/platform \
--namespace policycortex \
--set license.key=your_license_key \
--set replicaCount=3 \
--set postgres.enabled=true \
--set redis.enabled=true \
--set ingress.enabled=true \
--set ingress.hosts[0].host=policycortex.yourdomain.com
# Verify deployment
kubectl get pods -n policycortex
kubectl get services -n policycortex