Add support for figure captions

pull/1331/head
Kamran Ahmed 5 years ago
parent 132acfec00
commit cb24556d2f
  1. 10
      components/mdx-components/p.js
  2. 2
      data/guides/design-patterns-for-humans.md

@ -6,6 +6,16 @@ const P = styled.p`
font-weight: 400;
line-height: 1.6;
margin: 16px 0;
img + em {
display: block;
text-align: center;
color: #666666;
font-style: normal;
font-size: 14px;
margin: 5px 0 10px;
display: block;
}
`;
export default P;

@ -32,9 +32,11 @@ Serverful apps need to run consistently, watching for requests. Then, when reque
Serverful apps need to run consistently, watching for requests. Then, when requested, the app handles the request itself. In serverful monolith style apps, routing is commonly handled by a single file. Let's look at an Express.js example to illustrate this:
![](https://endler.dev/2019/tinysearch/bloomfilter.svg)
*A picture taken from endler.dev*
Our team runs a number of typical services for monitoring and performance analysis: API endpoints for metrics written in Go, Prometheus exporters, log parsers like Logstash or Gollum, and databases like InfluxDB or Elasticsearch. Each of these services run in their own container. We needed a simple system to keep those jobs running.
We started with a list of requirements for container orchestration:
* Run a fleet of services across many machines.

Loading…
Cancel
Save