An open API service indexing awesome lists of open source software.

https://github.com/pplu/performance-through-lightweight

Material for the Performance Through Lightweight talk
https://github.com/pplu/performance-through-lightweight

Last synced: 4 months ago
JSON representation

Material for the Performance Through Lightweight talk

Awesome Lists containing this project

README

          

This repo has a collection of Docker images that let you practice
the techniques exposed in the talk "Performance through lightweight".

Each directory has a Makefile with two targets:

```
make container
```

Which builds the image in the directory.

```
make run
```

Which runs the built container

----

Misc notes:

Delete all docker images from a machine

```
docker rmi $(docker images | awk 'NR>1 { print $3 }')
```