🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

container-scheduler

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

container-scheduler

A scheduler for docker containers, made easy

1.0.0
PyPI
Maintainers
1

container-scheduler

A scheduler for docker containers, made easy. Configure the desired schedule per each container and the library ensures the container will be running at the correct timing.

Usage

To start the scheduler, run the command below

.. code-block:: python

import container_scheduler

schedules = [
    {"container": "container_name_1", "crontab": "*/1 * * * *"},
    {"container": "container_name_2", "crontab": "0 4 * * *"}
]

container_scheduler.start(schedules)

The function start is synchronous and will not return until the scheduler is running. To stop it gracefully, you can send a SIGTERM or a SIGKILL signal.

The library was originally developed to work in a docker container, acting as a scheduler container for other containers (take a look at docker-container-scheduler <https://github.com/yusefmaali/docker-container-scheduler>_)

Meta

Yusef Maali - contact@yusefmaali.net

The scheduling is executed by the schedule-cronjob <https://github.com/yusefmaali/schedule-cronjob>_ library, a fork of the excellent schedule <https://github.com/dbader/schedule>_ from Daniel Bader.

Distributed under the MIT license. See LICENSE.txt <https://github.com/yusefmaali/container-scheduler/blob/master/LICENSE.txt>_ for more information.

https://github.com/yusefmaali/container-scheduler

Keywords

docker

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts