From e4e04f5c43b36082888a1e51c7e9a902d77a0ae2 Mon Sep 17 00:00:00 2001 From: Alphaeus Mote Date: Thu, 23 Oct 2025 20:41:49 -0400 Subject: [PATCH] Add platform specification for db-ui to support Linux amd64 Explicitly set platform: linux/amd64 for db-ui service Fixes: no matching manifest for linux/amd64 error The db-ui image has limited platform support, forcing amd64 ensures compatibility on x86_64 Linux systems --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 3115940..9407c04 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,7 @@ services: db-ui: image: ghcr.io/n7olkachev/db-ui:latest + platform: linux/amd64 container_name: business_analytics_ui environment: POSTGRES_HOST: postgres