mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-22 11:20:13 +00:00
14 lines
314 B
PHP
14 lines
314 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace AIO\Container;
|
|
|
|
enum ContainerState: string {
|
|
case ImageDoesNotExist = 'image_does_not_exist';
|
|
case NotRestarting = 'not_restarting';
|
|
case Restarting = 'restarting';
|
|
case Running = 'running';
|
|
case Starting = 'starting';
|
|
case Stopped = 'stopped';
|
|
}
|