Change port
This commit is contained in:
parent
224a110a18
commit
2d6c3273cb
2 changed files with 3 additions and 3 deletions
|
|
@ -13,8 +13,8 @@ RUN npm install
|
|||
COPY . .
|
||||
|
||||
ENV DEBUG=server:*
|
||||
ENV PORT=36530
|
||||
ENV PORT=36531
|
||||
|
||||
EXPOSE 36530
|
||||
EXPOSE 36531
|
||||
|
||||
CMD [ "npm","start" ]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
require("dotenv").config();
|
||||
|
||||
module.exports = {
|
||||
PORT: 36530 || process.env.PORT,
|
||||
PORT: 36531 || process.env.PORT,
|
||||
DEBUG: true || process.env.DEBUG,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue