- Document hybrid storage strategy for server (local DB/configs, network backups) - Add production unmapped node configuration with NVMe cache optimization - Document Docker→Podman migration benefits and GPU improvements - Update cache paths to reflect actual NVMe location (/mnt/NV2/tdarr-cache) - Add gaming-aware scheduler and enhanced monitoring system documentation - Update configuration file paths to current production locations - Document 100x database performance improvement with local storage 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| distributed-transcoding.md | ||
| gpu-acceleration.md | ||
| README.md | ||
Docker Patterns
Container Best Practices
- Use multi-stage builds for production images
- Minimize layer count and image size
- Run containers as non-root users
- Use specific version tags, avoid
latest - Implement health checks
Common Patterns
- Multi-service applications: Use docker-compose for local development
- Production deployments: Single-container per service with orchestration
- Development environments: Volume mounts for code changes
- CI/CD integration: Build, test, and push in pipeline stages
Security Considerations
- Scan images for vulnerabilities
- Use distroless or minimal base images
- Implement resource limits
- Network isolation between services
Related Documentation
- Examples:
/examples/docker/multi-stage-builds.md - Examples:
/examples/docker/compose-patterns.md - Reference:
/reference/docker/troubleshooting.md - Reference:
/reference/docker/security-checklist.md