Json – changing swagger curl (localhost instead of 0.0.0.0)
I'm trying to change the URL of my swagger UI from 0.0.0.0 to localhost (see image below) I'm using a docker compose with a swagger image. version: '3' services: api-postgrest: image: another-url.com/postgrest:1.0.0 ports: - 3000:3000 depends_on: - database-postgres environment: -…