mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 19:21:36 +00:00
9 lines
103 B
PHP
9 lines
103 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum StaticImageTypes: string
|
|
{
|
|
case NGINX_ALPINE = 'nginx:alpine';
|
|
}
|