mirror of
https://github.com/willfarrell/docker-crontab.git
synced 2025-04-04 14:05:11 +02:00
2.7 KiB
2.7 KiB
docker-crontab
A simple wrapper over docker
to all complex cron job to be run in other containers.
Supported tags and Dockerfile links
Why?
Yes, I'm aware of mcuadros/ofelia, it was the main inspiration for this project. A great project, don't get me wrong. It was just missing certain key enterprise features I felt were required to support where docker is heading.
Features
- Easy to read schedule syntax allowed.
- Allows for comments, cause we all need friendly reminders of what
update_script.sh
actually does. - Start an image using
image
. - Run command in a container using
container
. - Run command on a instances of a scaled container using
project
. - Ability to trigger scripts in other containers on completion cron job using
trigger
.
Config.json
comment
: Comments to be included with crontab entryschedule
: Crontab schedule syntax as described in https://godoc.org/github.com/robfig/cron. Ex@hourly
,@every 1h30m
,* * * * * *
. Required.command
: Command to be run on docker container/image. Required.image
: Docker images name (exlibrary/alpine:3.5
). Optional.project
: Docker Compose/Swarm project name. Optional, only applies whencontain
is included.container
: Full container name or container alias ifproject
is set. Ignored ifimage
is included.dockerargs
: Command line dockerrun
/exec
arguments for full control. Defaults totrigger
: Array of docker-crontab subset objects. Subset includes:image
,project
,container
,command
,dockerargs
See ./config.sample.json
for examples.
Examples
Command Line
docer build -t crontab .
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
crontab
Dockerfile
FROM willfarrell/crontab
COPY config.json ${HOME_DIR}/
Logrotate Dockerfile
FROM willfarrell/crontab
RUN apk add --no-cache logrotate
RUN echo "*/5 * * * * /usr/sbin/logrotate /etc/logrotate.conf" >> /etc/crontabs/logrotate
ADD logrotate.conf /etc/logrotate.conf
CMD ["crond", "-f"]
TODO
- Make smaller by using busybox?
- Have ability to auto regenerate crontab on file change
- Run commands on host machine
- Write tests
- Setup TravisCI