This application is derived from the MicroProfile OpenAPI TCK
git clone https://github.com/microservices-api/oas3-microprofile-app.git
cd oas3-microprofile-app
mvn package
The packaged WAR file will be at the following location: oas3-microprofile-app/deployment_artifacts/airlines.war
cd deployment_artifacts
docker build -t demo .
docker run -d -p 80:9080 demo
- open a browser and navigate to
localhost/openapi
to see the OpenAPI document, andlocalhost/openapi/ui
to see the OpenAPI UI.