From f973ce3d3c68d60af38c8d5ef912f94b56141990 Mon Sep 17 00:00:00 2001 From: subnub Date: Mon, 24 Feb 2025 11:43:05 -0500 Subject: [PATCH] made expose ports wow with env variables --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 77cb926..d89eafd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,8 +11,8 @@ services: - /usr/app/node_modules - ${FS_DIRECTORY}:/data ports: - - "3000:3000" - - "8080:8080" + - "${HTTP_PORT:-3000}:3000" + - "${HTTPS_PORT:-8080}:8080" - "5173:5173" environment: - DOCKER=true