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
- Host: GitHub
- URL: https://github.com/acaranta/dockmaestro
- Owner: acaranta
- Created: 2014-09-18T12:58:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-19T09:18:24.000Z (almost 11 years ago)
- Last Synced: 2025-04-09T14:36:31.457Z (about 1 year ago)
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.