From 1786ceaa60dc6ad8033d124b7ef2d524f21fa87f Mon Sep 17 00:00:00 2001 From: Maxim Date: Mon, 15 Dec 2025 18:05:21 +0300 Subject: [PATCH] fix: use relative API path for docker deployment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 61aa361..ab4621f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,12 +18,12 @@ services: context: ./frontend dockerfile: Dockerfile args: - - NUXT_PUBLIC_API_BASE=http://localhost:3001 + - NUXT_PUBLIC_API_BASE= container_name: eng-bot-frontend expose: - "3000" environment: - - NUXT_PUBLIC_API_BASE=http://localhost:3001 + - NUXT_PUBLIC_API_BASE= depends_on: - backend restart: unless-stopped