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

https://github.com/acaranta/dockmaestro

a container to work with maestrong
https://github.com/acaranta/dockmaestro

Last synced: 4 months ago
JSON representation

a container to work with maestrong

Awesome Lists containing this project

README

          

dockmaestro
===========

a container to work with maestrong

let's say you have a maestrong configuration named /fu/bar/myconf.yml

if you want to start this on a docker host without install python and its pip modules :
```
docker run --rm -t -i -v /fu/bar/myconf.yml:/conf/conf.yml acaranta/dockmaestro
```
or, if the myconf.yml is in the current dir :
```
docker run --rm -t -i -v $(pwd)/myconf.yml:/conf/conf.yml acaranta/dockmaestro
```

What it does is the equivalent of :
```
maestro -f /conf/conf.yml
```

Please see https://github.com/signalfuse/maestro-ng for more options/configuration.