mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-18 12:33:06 +00:00
9 lines
103 B
PHP
9 lines
103 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum StaticImageTypes: string
|
|
{
|
|
case NGINX_ALPINE = 'nginx:alpine';
|
|
}
|