From 718f01eab50fba856f02cbdd951ec5e2b74c804f Mon Sep 17 00:00:00 2001 From: Madiator2011 Date: Sat, 3 Aug 2024 21:26:00 +0200 Subject: [PATCH] Added ComfyUI testing --- official-templates/better-comfyui/docker-bake.hcl | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/official-templates/better-comfyui/docker-bake.hcl b/official-templates/better-comfyui/docker-bake.hcl index 5d4e892..fca01f2 100644 --- a/official-templates/better-comfyui/docker-bake.hcl +++ b/official-templates/better-comfyui/docker-bake.hcl @@ -1,5 +1,5 @@ group "default" { - targets = ["full-version", "light-version"] + targets = ["full-version", "light-version", "testing"] } target "base" { @@ -42,3 +42,15 @@ target "light-version" { tags = ["madiator2011/better-comfyui:light"] } +target "testing" { + inherits = ["base"] + args = { + INCLUDE_MODELS = "false" + } + contexts = { + scripts = "../../container-template" + proxy = "../../container-template/proxy" + logo = "../../container-template" + } + tags = ["madiator2011/better-comfyui:testing"] +}