mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Jean-Yves <7360784+docjyJ@users.noreply.github.com>
12 lines
289 B
PHP
12 lines
289 B
PHP
<?php
|
|
|
|
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';
|
|
}
|