From a3fbc9746fecae7d75b68efd2bbcc05d933a20b9 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Fri, 24 Apr 2026 16:53:54 -0400 Subject: [PATCH] fix: remove stale port binding and deprecated version key from compose MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove ports: mapping (192.168.2.47:8001:8001 — stale IP from prior host, caused 'cannot assign requested address' bind failure). Agent is only reachable via activeblue-net; no host exposure needed. - Remove top-level version: key (obsolete, triggers deprecation warning). These fixes were applied manually on the miaai host but never committed, causing git pull to conflict and the Python fixes to silently not apply. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index e3a5409..0eaff6e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3.9' - services: agent-service: build: @@ -8,8 +6,6 @@ services: container_name: activeblue-agent restart: unless-stopped env_file: .env - ports: - - '192.168.2.47:8001:8001' depends_on: agent-db: condition: service_healthy