2017-02-12 16:28:53 -07:00
# docker-crontab
2017-02-12 17:12:40 -07:00
A simple wrapper over `docker` to all complex cron job to be run in other containers.
2017-02-12 16:28:53 -07:00
2017-02-12 16:35:18 -07:00
## Supported tags and Dockerfile links
- [`latest` (*Dockerfile*) ](https://github.com/willfarrell/docker-crontab/blob/master/Dockerfile )
[](http://microbadger.com/images/willfarrell/crontab "Get your own version badge on microbadger.com") [](http://microbadger.com/images/willfarrell/crontab "Get your own image badge on microbadger.com")
2017-02-12 16:28:53 -07:00
## Why?
2017-02-12 16:57:19 -07:00
Yes, I'm aware of [mcuadros/ofelia ](https://github.com/mcuadros/ofelia ) (280MB), it was the main inspiration for this project.
2017-02-12 16:35:18 -07:00
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.
2017-02-12 16:28:53 -07:00
## 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
2017-02-12 21:08:45 -07:00
- `comment` : Comments to be included with crontab entry. Optional.
2017-02-12 16:28:53 -07:00
- `schedule` : 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 (ex `library/alpine:3.5` ). Optional.
- `project` : Docker Compose/Swarm project name. Optional, only applies when `contain` is included.
2017-02-12 21:08:45 -07:00
- `container` : Full container name or container alias if `project` is set. Ignored if `image` is included. Optional.
2017-02-12 16:28:53 -07:00
- `dockerargs` : Command line docker `run` /`exec` arguments for full control. Defaults to ` ` .
- `trigger` : Array of docker-crontab subset objects. Subset includes: `image` ,`project` ,`container` ,`command` ,`dockerargs`
2017-02-14 07:44:14 -07:00
- `onstart` : Run the command on `crontab` container start, set to `true` . Optional, defaults to falsey.
2017-02-12 16:28:53 -07:00
2017-02-12 17:12:40 -07:00
See [`config.sample.json` ](https://github.com/willfarrell/docker-crontab/blob/master/config.sample.json ) for examples.
2017-02-12 16:28:53 -07:00
2017-02-14 07:44:14 -07:00
```json
[{
"schedule":"@every 5m",
"command":"/usr/sbin/logrotate /etc/logrotate.conf"
},{
"comment":"Regenerate Certificate then reload nginx",
"schedule":"43 6,18 * * *",
"command":"sh -c 'dehydrated --cron --out /etc/ssl --domain ${LE_DOMAIN} --challenge dns-01 --hook dehydrated-dns'",
"dockerargs":"--env-file /opt/crontab/env/letsencrypt.env -v webapp_nginx_tls_cert:/etc/ssl -v webapp_nginx_acme_challenge:/var/www/.well-known/acme-challenge",
"image":"willfarrell/letsencrypt",
"trigger":[{
"command":"sh -c '/etc/scripts/make_hpkp ${NGINX_DOMAIN} & & /usr/sbin/nginx -t & & /usr/sbin/nginx -s reload'",
"project":"conduit",
"container":"nginx"
}],
"onstart":true
}]
```
## How to use
2017-02-12 16:28:53 -07:00
### Command Line
```bash
docer build -t crontab .
docker run -d \
2017-02-14 07:44:14 -07:00
-v /var/run/docker.sock:/var/run/docker.sock:ro \
-v /usr/bin/docker:/usr/bin/docker:ro \
-v /path/to/config/dir:/opt/crontab:rw \
2017-02-12 16:28:53 -07:00
crontab
```
### Dockerfile
```Dockerfile
FROM willfarrell/crontab
COPY config.json ${HOME_DIR}/
```
### Logrotate Dockerfile
```Dockerfile
FROM willfarrell/crontab
RUN apk add --no-cache logrotate
RUN echo "*/5 * * * * /usr/sbin/logrotate /etc/logrotate.conf" >> /etc/crontabs/logrotate
2017-02-14 07:45:00 -07:00
COPY logrotate.conf /etc/logrotate.conf
2017-02-12 16:28:53 -07:00
CMD ["crond", "-f"]
```
## TODO
2017-02-14 07:18:25 -07:00
- [ ] Have ability to auto regenerate crontab on file change (signal HUP?)
2017-02-12 16:59:57 -07:00
- [ ] Run commands on host machine (w/ --privileged?)
2017-02-12 16:28:53 -07:00
- [ ] Write tests
- [ ] Setup TravisCI