From 65636f5133aa64a352064c18e25ce3cc4a24d187 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Wed, 15 Apr 2026 14:41:57 -0400 Subject: [PATCH] fix: Expose ports on all interfaces for internal network access - Change port 3000 from 127.0.0.1 to 0.0.0.0 (frontend) - Change port 3001 from 127.0.0.1 to 0.0.0.0 (backend) - Allows access from 172.20.1.0/24 network --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8cefd53..59bd853 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -60,7 +60,7 @@ services: - OVERSEER_API_KEY=${OVERSEER_API_KEY} - ENCRYPTION_KEY=${ENCRYPTION_KEY} ports: - - "127.0.0.1:3001:3001" # Localhost only, Caddy proxies to this + - "3001:3001" # Exposed on all interfaces depends_on: postgres: condition: service_healthy @@ -85,7 +85,7 @@ services: - NEXT_PUBLIC_SOLANA_NETWORK=devnet - NEXT_PUBLIC_SOLANA_RPC_URL=https://api.devnet.solana.com ports: - - "127.0.0.1:3000:3000" # Localhost only, Caddy proxies to this + - "3000:3000" # Exposed on all interfaces depends_on: - backend networks: