C
C#2mo ago
Ellopis

Configure Swagger UI through docker?

The curl Swagger is doing is:
curl -X 'GET' \
'http://[::]:8080/WeatherForecast' \
-H 'accept: text/plain'
curl -X 'GET' \
'http://[::]:8080/WeatherForecast' \
-H 'accept: text/plain'
Which is giving the fail: Failed to fetch. Possible Reasons: CORS Network Failure URL scheme must be "http" or "https" for CORS request. I'm using the default template + swaggerUI. I tried ScalarUI with the same results
14 Replies
Sehra
Sehra2mo ago
ipv6 localhost would be [::1]
Ellopis
EllopisOP2mo ago
I don't get it. Could you elaborate?
Sehra
Sehra2mo ago
you said [::] above
Ellopis
EllopisOP2mo ago
I did, that's what I get as base url info: Microsoft.Hosting.Lifetime[14] Now listening on: http://[::]:8080 0.0.0.0.0.0 I don't even know how to change it. I don't know why when I execute the queries they are failing. If I do them in postman with localhost:8080 they work.
Sehra
Sehra2mo ago
:: here just means unspecified address
Ellopis
EllopisOP2mo ago
Ou, how should I define it?
Sehra
Sehra2mo ago
it's listening on all, but to connect you need to specify one, so you can use ::1 like 127.0.0.1 or localhost
Ellopis
EllopisOP2mo ago
still, only working from postman, not Swagger (I'm running it from docker)
Sehra
Sehra2mo ago
are you running the server outside docker, and curl inside docker?
Ellopis
EllopisOP2mo ago
No, server inside docker, and the curl outside (like postman is doing I guess)
Sehra
Sehra2mo ago
you can try starting the container with port mapping -p 8080:8080 then outside localhost:8080 would be forwarded to 8080 inside the container or might be able to do docker inspect and find the container's ip address and connect directly
Ellopis
EllopisOP4w ago
I want to change this Servers url
No description
Ellopis
EllopisOP4w ago
Everything else is working fine. Port forwarding works, because I can access through postman
Sehra
Sehra4w ago
Stack Overflow
Add host, basePath and schemes to swagger.json using Swashbuc...
I am using official doc step by step method to configure Swagger UI and generate Swagger JSON file in my ASP.NET core API application. Get started with Swashbuckle and ASP.NET Core If I look at my

Did you find this page helpful?