27 lines
658 B
C#
27 lines
658 B
C#
using MycroForge.Core.Attributes;
|
|
|
|
namespace MycroForge.Core;
|
|
|
|
public partial class ProjectConfig
|
|
{
|
|
public partial class DbConfig
|
|
{
|
|
public enum DbuPlatformOptions
|
|
{
|
|
[DockerPlatform(Platform = "linux/amd64")]
|
|
linux_amd64,
|
|
|
|
[DockerPlatform(Platform = "linux/arm32/v5")]
|
|
linux_arm32v5,
|
|
|
|
[DockerPlatform(Platform = "linux/arm32/v6")]
|
|
linux_arm32v6,
|
|
|
|
[DockerPlatform(Platform = "linux/arm32/v7")]
|
|
linux_arm32v7,
|
|
|
|
[DockerPlatform(Platform = "linux/arm64/v8")]
|
|
linux_arm64v8
|
|
}
|
|
}
|
|
} |