I created this project to fill a personal need to provide crontab image for simple cron tasks
- Base crontab image
version: '3'
services:
cron:
image: smartycoder/crontab:base
restart: always
volumes:
- ./volumes/opt:/opt
- ./volumes/etc/crontab:/etc/crontab
networks:
- default
docker run -d -v ./volumes/opt:/opt -v ./volumes/etc/crontab:/etc/crontab smartycoder/crontab:base