Hello I need to implement a very simple API, with some basic access. I have made it with Grails, but I realise the scale of the app will be really basic.
If we stripped it to the bare minimum and we used a microframework (like Flask) we would have an ORM and few routes. A simplified architecture would be this.
My question would be how do I do this with Vert.x and Docker? I am a bit lost but it seems that you can build each route as a docker image and vert.x takes care of the rest.
Another question I would have is how would that look like in an AWC context? How would Vert.x discover its services? Or would they all run on the same machine?
My reference would be this, which is quite good, but it makes logic leaps sometimes which have left me confused.

