gpt4 book ai didi

node.js - 如何在docker中创建live-reload开发环境? (NodeJS、Redis 和 Vue)

转载 作者:太空宇宙 更新时间:2023-11-03 23:51:08 25 4
gpt4 key购买 nike

我一直在尝试在我的Windows机器上创建一个docker开发环境。我的应用程序的结构是一个express/node后端、一个vue-cli生成的客户端和一个用于缓存的redis服务器。

我设法让项目运行起来,但是我遇到的最后一个问题是热重载。我已安装 nodemon 作为依赖项,并将脚本添加到 package.json 文件中。每当我对服务器进行更改时,我希望项目重新启动并显示新的更新。这是我当前的设置。从我读到的内容来看,这与卷有关(我对 docker 很陌生)。

API/服务器目录结构

backend
- server.js (express server)
- Dockerfile
- docker-compose.yml
- Models
- ect...

Dockerfile

FROM node:8
WORKDIR /app
COPY package.json /app
COPY . /app
RUN npm install
CMD ["npm", "start"]
EXPOSE 3000

docker-compose.yml

version: "3"
services:
web:
container_name: web-container
restart: always
depends_on:
- redis
build: .
volumes:
- .:/app
ports:
- "80:3000"
links:
- redis
redis:
container_name: redis-container
image: "redis:latest"
ports:
- "6379:6379"
volumes:
- ./data:/data

重要:

在Web服务上添加volumes字段时,抛出以下错误

web-container | > projectname@1.0.0 start /app
web-container | > nodemon server.js --trace-warnings
web-container |
web-container | sh: 1: nodemon: not found
web-container | npm ERR! code ELIFECYCLE
web-container | npm ERR! syscall spawn
web-container | npm ERR! file sh
web-container | npm ERR! errno ENOENT
web-container | npm ERR! projectname@1.0.0 start: `nodemon server.js --trace-warnings`
web-container | npm ERR! spawn ENOENT
web-container | npm ERR!
web-container | npm ERR! Failed at the projectname@1.0.0 start script.
web-container | npm ERR! This is probably not a problem with npm. There is likely additional logging o utput above.
web-container | npm WARN Local package.json exists, but node_modules missing, did you mean to install?
web-container |
web-container | npm ERR! A complete log of this run can be found in:
web-container | npm ERR! /root/.npm/_logs/2019-12-23T18_42_42_900Z-debug.log

如果我从服务中删除卷字段,它会按预期顺利运行,但我无法开始进行热重加载。

最佳答案

您的问题只是nodemon不在您的可执行路径上。 npm install 不会为你做这个。

有很多方法可以解决这个问题,但最简单的就是在容器中全局安装nodemon:

RUN npm install -g nodemon --no-optional

关于node.js - 如何在docker中创建live-reload开发环境? (NodeJS、Redis 和 Vue),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59460202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com