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