Unable to load the service index for source https://api.nuget.org/v3/index.json. [C:\app\aspnetapp.csproj]

后端 未结 2 1520
予麋鹿
予麋鹿 2021-02-11 16:56

https://github.com/dotnet/dotnet-docker-samples/tree/master/aspnetapp

Docker command docker build -t aspnetapp.

I am getting an error for docker bui

相关标签:
2条回答
  • 2021-02-11 17:47

    For me, this issue appeared randomly (along with multiple similar issues, such as "permission denied for nuget" etc. To fix that, restart Visual Studio) For windows, it was fixed by restarting docker service and restarting Visual Studio (2017).

    1. Shut down Docker and Visual Studio
    2. Winkey + R, type in services.msc
    3. Find Docker for Windows Service and restart it (restarting Docker normally is not enough)
    4. Start Docker and Visual Studio
    0 讨论(0)
  • 2021-02-11 17:53

    This appears to happen when there are multiple network adaptors present for the host and the priority of said adaptor is misconfigured. Run the following to display a table of your network adaptors:

    Get-NetIPInterface -AddressFamily IPv4 | Sort-Object -Property InterfaceMetric -Descending
    

    You want your primary adaptor (in my case wifi) to have the lowest InterfaceMetric.

    Set-NetIPInterface -InterfaceAlias 'Wi-Fi' -InterfaceMetric 1
    

    My network adaptor table for reference:

    See this github thread for more information: https://github.com/docker/for-win/issues/2760#issuecomment-430889666

    0 讨论(0)
提交回复
热议问题