urls option from custom swagger-config.yaml ignored.
See original GitHub issueQ&A (please complete the following information)
- OS: Archlinux
- Browser: Firefox
- Version: 76
- Method of installation: Docker
- Swagger-UI version: 3.25.3
- Swagger/OpenAPI version: OpenAPI 3.0
Content & configuration
Swagger-UI configuration options: I tried both yaml and json:
---
urls:
- name: Master API
url: specs/master.yaml
- name: Bot API
url: specs/bot.yaml
{
"urls": [
{
"name": "Master API",
"url": "specs/master.yaml"
},
{
"name": "Bot API",
"url": "specs/bot.yaml"
}
]
}
I looked at the swagger-config.yaml from this repository for reference.
Describe the bug you’re encountering
I have a micro service system with various swagger-specified APIs. My goal was to create a dedicated application, that integrates all the swagger documentation. ron in IRC suggested to use the urls
option to configure multuple spec URLs to be selected. So I pulled the swaggerapi/swagger-ui:v3.25.3
image, copied my files in specified the URLS
environment variable. As expected: The swagger UI shows the first URL in the list by default and allows to switch between the URLs using a selection in the header. Because we have many APIs, I then tried to use a custom swagger-config.yaml by copying it into the container and specifying CONFIG_URL=swagger-config.yaml
with the contents from above.
The UI seems to load the correct swagger-config.yaml (or .json) file, but it still shows the default petstore spec, apparently ignoring the provided urls
option.
To reproduce…
Steps to reproduce the behavior:
- Copy a swagger spec to
/usr/share/nginx/html/specs/
inside theswaggerapi/swagger-ui:v3.25.3
image - Copy a
swagger-config.yaml
to/usr/share/nginx/html/swagger-config.yaml
with the following content:--- urls: - name: Spec url: specs/<spec file name>
- Add
ENV CONFIG_URL=swagger-config.yaml
to the Dockerfile (or set it while running the container) - Open the swagger UI in the browser
Expected behavior
I’d expect to see the spec from the configured URL
Issue Analytics
- State:
- Created 3 years ago
- Reactions:5
- Comments:12 (3 by maintainers)
Top GitHub Comments
Just tested, seems like documentation is really outdated.
swagger-config.yaml
is not supported for now, onlyswagger-config.json
Also having
/usr/share/nginx/html/swagger-config.json
is not enough, need to set-e CONFIG_URL=/swagger-config.json
additionally while docker run.Ha… apparently the switch to JSON was all that is needed… So maybe some documentation is needed here, that Yaml is not supported for the config.