From 0c5ac2953d87cf43983cb194da847f3c32d2ee51 Mon Sep 17 00:00:00 2001 From: 4gray Date: Sat, 30 Nov 2024 16:44:56 +0100 Subject: [PATCH] fix: update hardcoded IP in docker-compose.yml to use localhost --- docker/docker-compose.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 941b9ec34..d36ab1c08 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -5,12 +5,14 @@ services: ports: - "7333:3000" environment: - - CLIENT_URL=http://localhost:4333 #this one should match with the address and port in frontend CLIENT_URL env + - CLIENT_URL=http://localhost:4333 + # this one should match with the address and port in frontend CLIENT_URL env frontend: image: 4gray/iptvnator:latest ports: - "4333:80" environment: - - BACKEND_URL=http://192.168.172.67:7333 # this one should match with the address of the backend service + - BACKEND_URL=http://localhost:7333 + # this one should match with the address of the backend service