Camunda 8.8 issue with Swagger

I installed Camunda 8.8 by downloading the docker-compose and then:

docker compose -f docker-compose-full.yaml up -d

I’m trying to test Camunda 8.8 new APIs in Swagger. The official documentation says that I need to go to http://localhost:8080/swagger-ui/index.html but by default no container is running on that port. Am I missing something?

Try :8088, it seems, that the swagger config should be loaded from orchestration container and that runs on 8088 (when using the default ports). When i try this port i’m getting a swagger UI response, but the swagger-config failed to load. But there is a first respone.

1 Like

Thank you Daniel for your answer. Weirdly enough, when I restarted the whole docker compose the problem was solved. I can now go to http://localhost:8088/swagger-ui/index.html and eventually pick the orchestration cluster API to access the new APIs.