自动执行的crontab容器.
命令行执行
docker run -d \
hujingnb/crontab \
"* * * * * root command1" \
"* * * * * root command2"
compose
version: '3.1'
services:
crontab:
image: hujingnb/crontab
command:
- "* * * * * root command1"
- "* * * * * root command2"
此镜像为基础镜像, 可通过FROM安装其他环境
Content type
Image
Digest
Size
63.3 MB
Last updated
about 4 years ago
docker pull hujingnb/crontab