Docker / bin / bash:找不到nodemon:command

时间:2015-11-12 02:40:30

标签: node.js docker makefile docker-compose nodemon

我正在尝试将我的工作节点代码从我的主机安装到docker容器中,并使用dockmon使用docker-compose运行它。 但容器似乎无法找到nodemon。 注意:我的主机上没有安装node或npm。

以下是我项目(测试)根文件夹中的文件。 (这只是草稿)

Dockerfile

FROM surenderthakran/nodejs:v4
ADD . /test
WORKDIR /test
RUN make install
CMD make run

生成文件

SHELL:=/bin/bash
PWD:=$(shell pwd)
export PATH:= $(PWD)/node_modules/.bin:$(PWD)/bin:$(PATH)
DOCKER:=$(shell grep docker /proc/1/cgroup)

install:
    @echo Running make install......
    @npm config set unsafe-perm true
    @npm install

run:
    @echo Running make run......
# Check if we are inside docker container
ifdef DOCKER
    @echo We are dockerized!! :D
    @nodemon index.js
else
    @nodemon index.js
endif

.PHONY: install run

搬运工-compose.yml

app:
    build: .
    command: make run
    volumes:
        - .:/test
    environment:
        NODE_ENV: dev
    ports:
        - "17883:17883"
        - "17884:17884"

的package.json

{
  "name": "test",
  "version": "1.0.0",
  "description": "test",
  "main": "index.js",
  "dependencies": {
    "express": "^4.13.3",
    "nodemon": "^1.8.0"
  },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [
    "api",
    "nodejs",
    "express"
  ],
  "author": "test",
  "license": "ISC"
}

index.js

'use strict';

var express = require('express');

我使用docker-compose build构建我的图片。它成功完成。 但是当我尝试使用docker-compose up运行它时,我得到:

Creating test_app_1...
Attaching to test_app_1
app_1 | Running make run......
app_1 | We are dockerized!! :D
app_1 | /bin/bash: nodemon: command not found
app_1 | make: *** [run] Error 127
test_app_1 exited with code 2
Gracefully stopping... (press Ctrl+C again to force)

有人可以提供建议吗?

注意:我的基本图片surenderthakran/nodejs:v4的Dockerfile可以在这里找到:https://github.com/surenderthakran/dockerfile_nodejs/blob/master/Dockerfile

4 个答案:

答案 0 :(得分:6)

问题已经解决。问题归结为我在装载的卷中没有node_modules

基本上,在执行docker-compose build时,图像已正确构建,实际代码已添加到图像并在node_modules中创建npm install文件夹项目根。但是docker-compose up代码正在项目根目录中加载,它覆盖了之前添加的代码,包括新创建的node_modules文件夹。

作为一种解决方案,我在主机上安装了nodejs并在我的主机上执行了npm install。因此,当我安装的代码时,我的项目根目录中仍然有node_modules文件夹,因为它也是从我的主机上安装的。

不是一个非常优雅的解决方案,但由于它是一个开发设置,我已准备好妥协。在制作时,我将使用docker builddocker run进行设置,反正不会使用nodemon

如果有人能建议我一个更好的解决方案,我会很高兴。

谢谢!

答案 1 :(得分:1)

您需要将 node_modules 设置为 docker 容器中的挂载卷。

例如

docker-compose.yml

app:
build: .
command: make run
volumes:
    - .:/test
    - /test/node_modules
environment:
    NODE_ENV: dev
ports:
    - "17883:17883"
    - "17884:17884"

答案 2 :(得分:0)

我相信您应该在 package.json 中使用预安装脚本。

因此,在脚本部分,只需添加脚本:

 "scritpts": {
     "preinstall": "npm i nodemon -g",
     "start": "nodemon app.js",
 }

你应该很好:)

答案 3 :(得分:0)

答案很晚了。但是您可以使用称为命名卷的名称将您的node_modules安装在docker卷空间中。这样,它将隐藏您的绑定坐骑。