挂载卷.NET Core Docker

时间:2019-03-07 09:38:37

标签: docker .net-core docker-compose asp.net-core-2.1

我有以下Dockerfile来创建.NET Core 2.1 APP:

FROM microsoft/dotnet:2.1.402-sdk AS builder
WORKDIR /app
# copy csproj and restore as distinct layers
COPY . .
RUN dotnet restore ./myproject.sln
# copy everything else and build
COPY . .
RUN dotnet publish ./myproject/myproject.csproj -c Release -o /app/out

# build runtime image
FROM microsoft/dotnet:2.1.4-aspnetcore-runtime
WORKDIR /app
COPY --from=builder /app/out ./
ENV ASPNETCORE_ENVIRONMENT Production
ENTRYPOINT ["dotnet", "myproject.dll"]

我创建了Docker映像,可以实例化容器而没有任何问题。当我尝试在另一个容器之间共享数据时,然后创建以下docker-compose文件:

version: "2"

services:
  another_app:
    restart: always
    image: another_app:latest
    container_name: another_app
    ports:
      - "4000"
    volumes:
      - shared-folder:/dist

  myproject_app:
    restart: always
    image: myproject:latest
    container_name: myproject
    volumes:
      - shared-folder:/app

volumes:
  shared-folder:

以这种方式配置将无法正常工作。我收到该应用程序的怪异.NET消息:

myproject_app | Did you mean to run dotnet SDK commands? Please install dotnet SDK from:
myproject_app |   http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
another_app| 0|another-a | Node Express server listening on http://localhost:4000 

现在,我发现在应用程序根目录中未定义卷时问题就消失了。例如,如果我这样做:

myproject_app:
    restart: always
    image: myproject:latest
    container_name: myproject
    volumes:
      - shared-folder:/app/another-folder

然后工作。为什么不能在.NET Core应用程序的根级别安装卷,为什么会出现该错误?

1 个答案:

答案 0 :(得分:4)

我也遇到过类似的问题,我想我知道原因:

以这种方式配置将无法正常工作。我收到该应用程序的怪异.NET消息:

myproject_app | Did you mean to run dotnet SDK commands? Please install dotnet SDK from:
myproject_app |   http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
another_app| 0|another-a | Node Express server listening on http://localhost:4000 

发生此消息是因为dotnet工具找不到.dll文件,因此将其视为dotnet子命令,然后由于需要dotnet sdk而引发错误。 (因为最后一次构建仅包含运行时)

主要问题

问题出在使用docker卷shared-folder:/appWORKDIR/app。真正发生的是,当连接docker卷时,它会用本地计算机中的/app目录覆盖容器shared-folder目录的内容,因此它不是能够找到应用.dll文件,并且发生了上述错误。

这就是为什么当您将其更改为shared-folder:/app/another-folder时,由于它已映射到容器中的空目录,因此能够正常工作。