Fix image reference formatting in appRender for correct Docker image path

This commit is contained in:
2025-03-14 21:41:11 +08:00
parent c62e160288
commit 298e82bcb8
+1 -1
View File
@@ -24,7 +24,7 @@ appRender = lambda a: App {
template.spec.containers = [
{
name = a.name
image = "cr.suyiiyii.top/docker.io" + a.image
image = "cr.suyiiyii.top/docker.io/" + a.image
ports = [{containerPort = a.port}]
}
]