Update README.md

This commit is contained in:
Nicco 2019-12-22 23:43:43 +01:00 committed by GitHub
parent b5b21186b8
commit d04d56c9e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,12 @@ Docker matrix build generator.
The basic idea is that you combine a config file with custom variables with templating (Jinja2) and *__tumbo__* will run your matrix build in docker. The basic idea is that you combine a config file with custom variables with templating (Jinja2) and *__tumbo__* will run your matrix build in docker.
## 📦 Install
```
pip install tumbo
```
## 🚀 Quickstart ## 🚀 Quickstart
###### spec.yml ###### spec.yml
@ -35,7 +41,7 @@ CMD [ "echo", "Hi {{ name }} from {{ version }}" ]
And run And run
```sh ```sh
tumbo -c spec.yml tumbo spec.yml
``` ```
Tumbo will then generate 6 images, build and run them in all the combinations possible with the variables given. Tumbo will then generate 6 images, build and run them in all the combinations possible with the variables given.