This is a image to run cronjobs. The image has nothing installed. So this is more a base image.
115
This is a image to run cronjobs inside a docker container. The image has nothing installed. So this is a pure base image.
create a crontab file. for example:
## Every minute print the date
* * * * * rsync /a/local/file user@host:/a/remote/location
create a new Dockerfile
FROM oliverlorenz/cron:alpine
RUN apk add --no-cache rsync
ADD crontab /crontab
build and use
Content type
Image
Digest
Size
2.7 MB
Last updated
over 6 years ago
docker pull oliverlorenz/crontab:latest-alpine