From 83a17c8f159d5d2c79aaab2b9d906d9d533762a8 Mon Sep 17 00:00:00 2001 From: Julian Tabel Date: Tue, 10 Feb 2026 09:43:18 +0100 Subject: [PATCH] Build images for linux/amd64 to run on Unraid Co-Authored-By: Claude Opus 4.6 --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 34e76a7..44c46bc 100755 --- a/deploy.sh +++ b/deploy.sh @@ -47,7 +47,7 @@ fi for i in "${!IMAGES[@]}"; do IMAGE="${REGISTRY}/${OWNER}/${IMAGES[$i]}:latest" info "Building ${IMAGES[$i]}..." - $CONTAINER_CMD build -t "$IMAGE" -f "${DOCKERFILES[$i]}" "${CONTEXTS[$i]}" + $CONTAINER_CMD build --platform linux/amd64 -t "$IMAGE" -f "${DOCKERFILES[$i]}" "${CONTEXTS[$i]}" info "Pushing ${IMAGES[$i]}..." $CONTAINER_CMD push "$IMAGE" done