Skip to content

Commit 72e12aa

Browse files
committed
feat: Add ContainerStatusTypes enum for managing container status
1 parent 6c78580 commit 72e12aa

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

app/Enums/ContainerStatusTypes.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
namespace App\Enums;
4+
5+
enum ContainerStatusTypes: string
6+
{
7+
case PAUSED = 'paused';
8+
case RESTARTING = 'restarting';
9+
case REMOVING = 'removing';
10+
case RUNNING = 'running';
11+
case DEAD = 'dead';
12+
case CREATED = 'created';
13+
case EXITED = 'exited';
14+
}

0 commit comments

Comments
 (0)