From 16c9589058469b42521df84b3ec8b6fa00ae22c7 Mon Sep 17 00:00:00 2001 From: Wentao Lyu <35-wentao.lyu@users.noreply.git.stereye.tech> Date: Sat, 11 Mar 2023 16:14:11 +0800 Subject: [PATCH] fix: use quotes outside of key=value in docker-compose.yml fix: set HOST=0.0.0.0 by default in api's dockerfile --- api/Dockerfile | 2 ++ docker-compose.yml | 10 +++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index fd21cf4d1..b861217be 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -8,6 +8,8 @@ RUN npm install COPY . /api/ # Make port 3080 available to the world outside this container EXPOSE 3080 +# Expose the server to 0.0.0.0 +ENV HOST=0.0.0.0 # Run the app when the container launches CMD ["npm", "start"] diff --git a/docker-compose.yml b/docker-compose.yml index 83fa98fd2..f20d03c1e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,11 +17,11 @@ services: image: node-api restart: always environment: - - PORT=3080 - - MONGO_URI=mongodb://mongodb:27017/chatgpt-clone - - OPENAI_KEY="" - - CHATGPT_TOKEN="" - - BING_TOKEN="" + - "PORT=3080" + - "MONGO_URI=mongodb://mongodb:27017/chatgpt-clone" + - "OPENAI_KEY=" + - "CHATGPT_TOKEN=" + - "BING_TOKEN=" ports: - "9000:3080" volumes: