Schedule App - Maestro Server
5.0K
Maestro Server is an open source software platform for management and discovery servers, apps and system for Hybrid IT. Can manage small and large environments, be able to visualize the latest multi-cloud environment state.
To test out the demo, Demo Online
docker run -e "MAESTRO_DATA_URI=http://data:5000" -e "CELERY_BROKER_URL=amqp://rabbitmq:5672" maestroserver/scheduler-maestro
docker run -e "MAESTRO_DATA_URI=http://data:5000" -e "CELERY_BROKER_URL=amqp://rabbitmq:5672" maestroserver/scheduler-maestro-celery
services:
scheduler:
image: maestroserver/scheduler-maestro
environment:
- "MAESTRO_DATA_URI=http://data:5000"
- "CELERY_BROKER_URL=amqp://rabbitmq:5672"
- "MAESTRO_MONGO_URI=localhost"
- "MAESTRO_MONGO_DATABASE=maestro-client"
scheduler_worker:
image: maestroserver/scheduler-maestro-celery
environment:
- "MAESTRO_DATA_URI=http://data:5000"
- "MAESTRO_DISCOVERY_URI=http://discovery:5000"
- "MAESTRO_ANALYTICS_URI=http://analytics:5020"
- "MAESTRO_REPORT_URI=http://reports:5005"
- "CELERY_BROKER_URL=amqp://rabbitmq:5672"
- "MAESTRO_MONGO_URI=localhost"
- "MAESTRO_MONGO_DATABASE=maestro-client"
| Env Variables | Example | Description |
|---|---|---|
| MAESTRO_DATA_URI | http://localhost:5010 | Data Layer API URL |
| MAESTRO_DISCOVERY_URI | http://localhost:5000 | Discovery App URL |
| MAESTRO_ANALYTICS_URI | http://localhost:5020 | Analytics App URL |
| MAESTRO_REPORT_URI | http://localhost:5005 | Report App URL |
| CELERY_BROKER_URL | XXXX | Rabbitmq URL |
| MAESTRO_MONGO_URI | localhost | Mongo URI |
| MAESTRO_MONGO_DATABASE | maestro-client | Mongo Database name |
Are you interested in developing Maestro Server, creating new features or extending them?
We created a set of documentation, explaining how to set up your development environment, coding styles, standards, learn about the architecture and more. Welcome to the team and contribute with us.
Content type
Image
Digest
Size
60.7 MB
Last updated
almost 5 years ago
docker pull maestroserver/scheduler-maestro