Deployment¶
Production deployment guides and operational documentation.
Deployment Guides¶
- Docker Deployment - Container-based deployment
- Production Setup - Production configuration and best practices
- Security Guide - Security hardening and best practices
- Monitoring & Observability - Setting up monitoring stack
- Troubleshooting - Common issues and solutions
- Backup & Recovery - Data protection strategies
Quick Deploy¶
```bash
Using Docker Compose¶
docker-compose -f docker-compose.prod.yml up -d
Or using the Makefile¶
make deploy-prod ```
See Production Setup for detailed deployment procedures.