5

执行以下步骤:

  1. 定义 Dockerfile:

    FROM node:alpine
    
    RUN yarn global add @angular/cli
    RUN yarn global add node-sass
    
    RUN mkdir /volumes
    
    WORKDIR /volumes
    
    EXPOSE 4200
    
    ENTRYPOINT ["ng"]
    
  2. 从此 Dockerfile 构建映像:

    docker build -t my_angular_image .
    
  3. 使用图像创建一个新的 Angular 应用程序:

    // Create the new app
    docker run --rm --mount type=bind,src=$PWD,dst=/volumes my_angular_image new my-app --directory app --style scss
    // Change ownership of the generated app
    sudo chown -R $USER:$USER .
    
  4. 根据镜像,运行容器绑定挂载应用卷:

    docker run -p 4200:4200 --mount type=bind,src=$PWD/app,dst=/volumes my_angular_image serve --host 0.0.0.0
    

结果: 第一次编译按预期工作,容器为应用程序提供服务。但是,当更改必须ng serve在容器中监视的文件的值(来自主机)时,不会触发新的角度构建(因此,服务的应用程序不会更新)。

问题: 有人知道为什么在主机上更改绑定挂载卷的值不会触发ng serve容器中的角度更新(就像不使用 Docker 时那样)?

环境:

  • 操作系统:Ubuntu 16.04
  • 码头工人:18.01.0-ce
4

2 回答 2

5

为了使示例正常工作,请将步骤 3 替换为以下命令:

// Create the new app
docker run --rm --mount type=bind,src=$PWD,dst=/volumes my_angular_image new my-app --directory app --style scss
// Change ownership of the generated app
sudo chown -R $USER:$USER .
// Configure angular-cli polling:
sed -i 's/\"styleExt\": \"scss\",/"styleExt": "scss", "poll": 1000,/g' $PWD/app/.angular-cli.json

学分:

  • @PavelAgarkov 的答案及其有用的链接。
于 2018-01-20T15:15:55.893 回答
3

angular-cli.json 有一个隐藏选项,poll通过指定可以更改下划线 webpack 监视文件更新的方式来命名。链接:

  1. https://webpack.js.org/configuration/watch/#watchoptions-poll
  2. https://github.com/angular/angular-cli/pull/1814
  3. https://github.com/angular/angular-cli/wiki/angular-cli#angular-cli-config-schema
于 2018-01-20T14:53:00.550 回答