From 224820df509a9cafff2635a630780fccff6f928f Mon Sep 17 00:00:00 2001 From: komodo Date: Sun, 27 Jul 2025 19:55:53 +0000 Subject: [PATCH] [Komodo] mbecker20: Commit Resource File: update dev.toml --- dev.toml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/dev.toml b/dev.toml index b71396b..8cec7e2 100644 --- a/dev.toml +++ b/dev.toml @@ -50,7 +50,7 @@ Must run the following command on host to create the builder: """ tags = ["dev", "core"] [build.config] -builder = "local" +builder = "x86_64-builder" version = "1.18.5" auto_increment_version = false image_name = "komodo-core" @@ -68,6 +68,9 @@ extra_args = [ "--platform linux/amd64,linux/arm64", "--builder builder" ] +pre_build.command = """ + docker buildx create --name builder --use --bootstrap +""" build_args = """ BINARIES_IMAGE = ghcr.io/moghtech/komodo-binaries:latest-dev FRONTEND_IMAGE = ghcr.io/moghtech/komodo-frontend:latest-dev @@ -106,7 +109,7 @@ Must run the following command on host to create the builder: """ tags = ["dev", "periphery"] [build.config] -builder = "local" +builder = "x86_64-builder" version = "1.18.5" auto_increment_version = false image_name = "komodo-periphery" @@ -124,6 +127,9 @@ extra_args = [ "--platform linux/amd64,linux/arm64", "--builder builder" ] +pre_build.command = """ + docker buildx create --name builder --use --bootstrap +""" build_args = """ BINARIES_IMAGE = ghcr.io/moghtech/komodo-binaries:latest-dev """ @@ -140,7 +146,7 @@ Must run the following command on host to create the builder: """ tags = ["dev", "util"] [build.config] -builder = "local" +builder = "x86_64-builder" version = "1.18.5" auto_increment_version = false image_name = "komodo-util" @@ -158,6 +164,9 @@ extra_args = [ "--platform linux/amd64,linux/arm64", "--builder builder" ] +pre_build.command = """ + docker buildx create --name builder --use --bootstrap +""" build_args = """ BINARIES_IMAGE = ghcr.io/moghtech/komodo-binaries:latest-dev """