For overview of Swagger tools refer Swagger - OpenAPI Specification (OAS) Installing Swagger UI - Docker Pull the docker image - docker pull swaggerapi/swagger-ui Run the docker image - docker run -p 80:8080 swaggerapi/swagger-ui Customisation : To the above command lets add some customisation, BASE_URL : To customise the URL to specific keywords. SWAGGER_JSON : Specify your json files generated from the editor. docker run -p 8080:8080 -e BASE_URL=/swaggerUI -e SWAGGER_JSON=/apispecs/swagger.json -v /apispecs:/apispecs swaggerapi/swagger-ui …
Swagger is obsolete and the current is known as OpenAPI Specification (OAS). Swagger API project was created in 2011 the basic necessity for the tool evolved from automation of API documentation and client SDK generation. Swagger API project was made open source in September 2011. On 1 January 2016, the Swagger specification was renamed to OpenAPI Specification. OAS was based on the Swagger Specification How does OAS helps? OAS is sponsored by Linux foundation and supported by industry leaders including Google, IBM, and Microsoft who are fou…