gpt4 book ai didi

.net - Ubuntu 上的 Docker .Net Core 应用程序未在 localhost :8000 中打开

转载 作者:行者123 更新时间:2023-12-04 19:14:10 25 4
gpt4 key购买 nike

我正在使用 Ubuntu 16.04,我在 Windows 上有一个带有 .Net Core 的 docker 应用程序,并试图让它在 Ubuntu 上运行。我有 docker 和 .Net Core 运行没有错误。

当我运行“sudo docker-compose up”时,它会运行服务器并监听“http://+:80”。但我无法在浏览器中打开它。在 Windows 上,我正在使用的每个人都可以在 localhost:8000 上加载它。

当我运行 docker-compose 这就是我得到的:

sudo docker-compose up
Starting webui
Starting projects_api
Starting profile_api
Starting identity_api
Attaching to projects_api, profile_api, webui, identity_api
profile_api | Hosting environment: Development
profile_api | Content root path: /app
projects_api | Hosting environment: Development
profile_api | Now listening on: http://+:80
projects_api | Content root path: /app
profile_api | Application started. Press Ctrl+C to shut down.
projects_api | Now listening on: http://+:80
projects_api | Application started. Press Ctrl+C to shut down.
identity_api | info: Microsoft.Extensions.DependencyInjection.DataProtectionServices[0]
identity_api | User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
identity_api | Hosting environment: Development
identity_api | Content root path: /app
identity_api | Now listening on: http://+:80
identity_api | Application started. Press Ctrl+C to shut down.

现在这些是我尝试过的方法,但是,在 Windows 上,他们使用 Powershell 脚本来 ping 服务器。但我不知道如何将 powershell 转换为 bash。我想也许如果我将它转换为 bash,我可以运行该应用程序。这是应该运行服务器的 powershell 脚本:
    param(
[string]$host_url = "http://localhost"
)


@(
"$host_url`:5001/api/health/ping",
"$host_url`:5002/api/health/ping",
"$host_url`:5003/api/health/ping",
"$host_url`:5001/.well-known/openid-configuration"
) |
ForEach-Object { Invoke-WebRequest -Uri $_ } |
Select-Object StatusCode, StatusDescription, Content

最佳答案

docker-compose up运行它默认查找两个文件,docker-compose.ymldocker-compose.override.yml . docker-compose.yml在您的仓库中没有指定任何映射,但 docker-compose.override.yml has a mapping of 5000在主机上 80在 UI 容器中。不确定您的同事在 8080 上的 UI 效果如何尽管除非他们映射了不同的东西。

关于.net - Ubuntu 上的 Docker .Net Core 应用程序未在 localhost :8000 中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44579254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com