mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-15 10:10:17 +00:00
13 lines
314 B
PHP
13 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';
|
|
}
|