Files
coolify/docs/v5/archive/app/Enums/V5/IngressStatus.php.txt
T
Andras Bacsai 76030a30d4 chore(v5): archive V5 implementation and remove runtime integration
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
2026-08-15 19:13:30 +02:00

26 lines
651 B
Plaintext

<?php
namespace App\Enums\V5;
/**
* States persisted on `v5_servers.ingress_status`.
*
* The value mirrors the ingress proxy container's runtime state as reported
* by coold, so the Docker and Podman container states are part of the catalog.
*/
enum IngressStatus: string
{
case Configured = 'configured';
case Created = 'created';
case Starting = 'starting';
case Running = 'running';
case Restarting = 'restarting';
case Paused = 'paused';
case Removing = 'removing';
case Stopping = 'stopping';
case Stopped = 'stopped';
case Exited = 'exited';
case Dead = 'dead';
case Unknown = 'unknown';
}