关于使用docker-compose安装nodejs开发环境遇到的一个问题
我新建了一个dockerfile内容如下
FROM node:latest
RUN mkdir -p /mnt/app
# Create app directory
WORKDIR /mnt/app
# Install app dependencies
COPY package.json /mnt/app
RUN npm install
# Bundle app source
COPY . /mnt/app
EXPOSE 3000
CMD [ "npm", "start" ]
docker-compose文件内容如下
node:
build:
context: ./services/node/website
dockerfile: Dockerfile
ports:
- "3000:3000"
#volumes:
# - ./app:/mnt/app
文件结构是
问题现在是不使用docker-compose数据映射,单纯使用dockerfile copy方法进去就可以跑起来node,但如果我使用数据映射
volumes:
- ./app:/mnt/app
则就报错
报错信息如下:
npm info it worked if it ends with ok
npm info using npm@5.4.2
npm info using node@v8.7.0
npm ERR! path /mnt/app/package.json
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open '/mnt/app/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2017-10-20T03_08_13_487Z-debug.log
求大神看下
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论