From e4c1bb0b149caf1cfce6230b52a5d67cd5c8d740 Mon Sep 17 00:00:00 2001 From: Morris Richman <81453549+Mcrich23@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:43:44 -0700 Subject: [PATCH] Change pullImage call to include the proper platform string --- Sources/Container-Compose/Commands/ComposeUp.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Container-Compose/Commands/ComposeUp.swift b/Sources/Container-Compose/Commands/ComposeUp.swift index ec3de016..b09bb94e 100644 --- a/Sources/Container-Compose/Commands/ComposeUp.swift +++ b/Sources/Container-Compose/Commands/ComposeUp.swift @@ -332,7 +332,7 @@ public struct ComposeUp: AsyncParsableCommand, @unchecked Sendable { } else if let img = service.image { // Use specified image if no build config // Pull image if necessary - try await pullImage(img, platform: service.container_name) + try await pullImage(img, platform: service.platform) imageToRun = img } else { // Should not happen due to Service init validation, but as a fallback