Docker 笔记


Docker UI管理

https://github.com/dockerclubgroup/shipyard

 

Docker部署netCore webapi报错:Unable to bind to http://localhost:5000 on the IPv6 loopback

Dockerfile文件:

FROM mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim 
FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster 
ENV ASPNETCORE_URLS=http://+:8000 
EXPOSE 5000
EXPOSE 8000
WORKDIR /app
COPY . /app/
ENTRYPOINT ["dotnet", "ApiGateway.dll"]

转自:https://blog.csdn.net/weixin_48000648/article/details/106350651

 
posted @ 2020-11-08 13:04  yvan.zhang  阅读(49)  评论(0)    收藏  举报