Experiments
In this lesson, we'll look at some experiments that you can try out with SSI using ESI.
We'll cover the following...
version: '3'
services:
  common:
    image: educative1/mapi_scsesi_common
  order:
    image: educative1/mapi_scsesi_order 
    ports:
     - "8090:8080"
  varnish:
    image: educative1/mapi_scsesi_varnish
    links:
     - common
     - order
    ports:
     - "8080:8080"- 
A microservice that simply displays a static HTML page can serve as an example. 
- 
The new ... 
 Ask