1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/ndscheduler/README.md

17 lines
503 B
Markdown
Raw Normal View History

2020-05-22 05:28:29 +00:00
ndscheduler
===========
[ndscheduler][1] is a flexible python library for building your own cron-like
system, with REST APIs and a Web UI.
2020-05-22 06:17:38 +00:00
```bash
$ mkdir -p data/jobs
$ touch data/jobs/__init__.py
$ wget -P data https://github.com/Nextdoor/ndscheduler/raw/v0.3.0/simple_scheduler/settings.py
$ wget -P data/jobs https://github.com/Nextdoor/ndscheduler/raw/v0.3.0/simple_scheduler/jobs/shell_job.py
$ docker-compose up -d
$ curl http://127.0.0.1:8888
```
2020-05-22 05:28:29 +00:00
[1]: https://github.com/Nextdoor/ndscheduler