我有一个基本的 web api (owin self host) 应用程序,它在我的本地 docker 工具箱 (windows) 中运行良好。
但是当我用 docker cloud 启动它时,它会启动,但在 5 或 6 秒后它会停止。我不知道该怎么办。我正在使用单声道:最新图像和我的云托管环境。是数字海洋。
这是代码
程序.cs:
string address = "http://+:5000";
using (WebApp.Start<Startup>(address))
{
Console.WriteLine("web api listening on port 5000");
Console.Read();
}
只是这个。
启动.cs
HttpConfiguration config = new HttpConfiguration();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional });
app.UseWebApi(config);
Dockerfile:
from mono:latest
run mkdir app
copy ./GAC/bin/Debug /app
workdir /app
expose 5000
entrypoint ["mono"]
cmd ["GAC.exe"] // gac is the console app name.
而已。我通过键入来运行我的容器docker run -it -p 80:5000 myContainer
。它运行时没有停止问题。我在 Windows 中构建了我的容器,所以我可能面临一些基于 unix 的问题。
你怎么看?有没有遗漏的地方?