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, };