This series walks you through running Kong Mesh in Universal mode using Docker containers. You’ll set up and secure a simple demo application to explore how Kong Mesh works. The application consists of two services:
-
demo-app: A web application that lets you increment a numeric counter. -
kv: A data store that keeps the counter’s value.
flowchart LR browser(browser) subgraph mesh edge-gateway demo-app(demo-app :5050) kv(kv :5050) end edge-gateway --> demo-app demo-app --> kv browser --> edge-gateway