Skip to content

Latest commit

 

History

History
52 lines (41 loc) · 1.57 KB

File metadata and controls

52 lines (41 loc) · 1.57 KB
title Features
description Comprehensive guide to Cbox Init features including health checks, scaling, and monitoring
weight 20

Features

Cbox Init provides production-grade process management features designed for PHP applications in Docker containers. Whether you're running Laravel, WordPress, Symfony, or any PHP framework, these features help you manage multi-process containers reliably.

Core Features

Quick Overview

Health Monitoring

processes:
  nginx:
    enabled: true
    command: ["nginx", "-g", "daemon off;"]
    health_check:
      type: tcp
      address: "127.0.0.1:80"
      interval: 10
      timeout: 5
      retries: 3

Scheduled Tasks

processes:
  backup-job:
    enabled: true
    command: ["php", "/app/scripts/backup.php"]
    schedule: "0 2 * * *"  # Daily at 2 AM

See Also