From 9916003bcddadb96986aac5462637cd89f408a17 Mon Sep 17 00:00:00 2001 From: treyt Date: Thu, 19 Feb 2026 15:48:40 -0600 Subject: [PATCH] =?UTF-8?q?Fix=20Docker=20segfault=20on=20Apple=20Silicon?= =?UTF-8?q?=20=E2=80=94=20add=20linux/arm64=20platform?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Go runtime netpoll_epoll segfaults under amd64 emulation on ARM Macs. Explicitly target arm64 for all build services. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index bd9c3c4..2e55e21 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,6 +40,7 @@ services: # Casera API api: + platform: linux/arm64 build: context: . target: api @@ -101,6 +102,7 @@ services: # Casera Admin Panel (Next.js) admin: + platform: linux/arm64 build: context: . target: admin @@ -125,6 +127,7 @@ services: # Casera Worker (Background Jobs) worker: + platform: linux/arm64 build: context: . target: worker