容器中运行定时任务
背景
- 想使用Docker容器中跑一个定时任务,于是有了本篇文章
思路
- 经过查询,有的帖子建议使用宿主机执行定时的
docker exec
命令,但是这样感觉使用Docker的意义就不大了,还是把定时任务放在容器中比较好 - 因此直接在容器中使用
cron
执行定时任务,但是这其中的坑比较多,特此记录
操作
submit.sh 要定时执行的脚本
#!/bin/bash echo "$(date): " >> /var/log/cron.log 2>&1 /usr/local/bin/python /usr/src/app/submit_3chk.py >> /var/log/cron.log 2>&1
- 注意在定时执行的脚本中的命令要使用绝对值指定可执行文件的位置
cronfile 定时任务配置文件
13 8 * * * root /usr/src/app/submit.sh
- cron时间格式这里不再赘述
- 每天的8:13使用root用户执行submit.sh脚本
Dockerfile
FROM python:3 WORKDIR /usr/src/app # 安装依赖 COPY . . RUN pip install --no-cache-dir -r requirements.txt # Install Pip RUN apt update RUN apt install -y cron # 设置定时脚本权限 RUN chmod +x submit.sh # Add crontab file in the cron directory ADD cronfile /etc/cron.d/submit-cron # Give execution rights on the cron job RUN chmod 0644 /etc/cron.d/submit-cron # Create the log file to be able to run tail RUN touch /var/log/cron.log # 更改时区 RUN rm -rf /etc/localtime RUN ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime # Run the command on container startup CMD cron && tail -f /var/log/cron.log
核心步骤:
- 定时脚本要加可执行权限
- 定时配置文件放到
/etc/cron.d/
目录下 - 更改时区为
Asia/Shanghai
- 执行
cron
- 构建镜像后运行容器即可
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。