From 2d6c3273cb852c2ccaaecc72685f19f820f8a4bb Mon Sep 17 00:00:00 2001 From: Ittipat Lusuk Date: Fri, 8 Aug 2025 16:38:46 +0700 Subject: [PATCH] Change port --- Dockerfile | 4 ++-- config.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a6113b..2de1d59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ RUN npm install COPY . . ENV DEBUG=server:* -ENV PORT=36530 +ENV PORT=36531 -EXPOSE 36530 +EXPOSE 36531 CMD [ "npm","start" ] \ No newline at end of file diff --git a/config.js b/config.js index 4ca346f..ed8cf14 100644 --- a/config.js +++ b/config.js @@ -1,6 +1,6 @@ require("dotenv").config(); module.exports = { - PORT: 36530 || process.env.PORT, + PORT: 36531 || process.env.PORT, DEBUG: true || process.env.DEBUG, };