fix: use quotes outside of key=value in docker-compose.yml

fix: set HOST=0.0.0.0 by default in api's dockerfile
This commit is contained in:
Wentao Lyu 2023-03-11 16:14:11 +08:00
parent 8604030404
commit 16c9589058
2 changed files with 7 additions and 5 deletions

View file

@ -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"]