From ce85850f26bce04bd65daa69e2a097766b604240 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Fri, 1 Mar 2024 12:45:30 +0200 Subject: [PATCH] added localhost IP to ports for api and web docker services --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index f993ad4..922325e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -156,7 +156,7 @@ services: api: image: web3labs/epirus-free-api:latest ports: - - 8090:8090 + - 127.0.0.1:8090:8090 environment: - NODE_ENDPOINT=http://foundry:8541 - MONGO_CLIENT_URI=mongodb://mongodb:27017 @@ -184,7 +184,7 @@ services: web: image: web3labs/epirus-free-web:latest ports: - - 3001:3000 + - 127.0.0.1:3001:3000 environment: - API_URL=http://localhost:8090 - WS_API_URL=ws://localhost:8090