From 7bfdcc1f547ddae031b160707faf87d0093e6590 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Fri, 7 Jun 2024 15:40:45 +0200 Subject: [PATCH] remove exposed port from web service and change nginx port to 3000 --- docker-compose.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index aca6482..a5f5748 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -199,8 +199,6 @@ services: web: image: web3labs/epirus-free-web:latest - ports: - - 0.0.0.0:3000:3000 environment: - API_URL=${EPIRUS_WEB_API_URL:-/api} - WS_API_URL=${EPIRUS_WEB_WS_API_URL:-ws://localhost:8090} @@ -230,7 +228,7 @@ services: - ./nginx.conf:/etc/nginx/nginx.conf - ./5xx.html:/www/error_pages/5xx.html ports: - - ${PORT:-80}:80 + - 0.0.0.0:3000:80 depends_on: - api - web