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
- Host: GitHub
- URL: https://github.com/pplu/performance-through-lightweight
- Owner: pplu
- Created: 2018-11-15T21:44:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-16T22:03:51.000Z (over 7 years ago)
- Last Synced: 2025-02-15T00:25:52.609Z (over 1 year ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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 }')
```