jd_scripts/docker/notify_docker_user.js

7 lines
194 B
JavaScript
Raw Normal View History

2020-12-11 14:47:13 +08:00
const notify = require('../sendNotify');
function image_update_notify() {
notify.sendNotify("⚠Docker镜像版本更新通知⚠", process.env.NOTIFY_CONTEXT)
2020-12-11 14:47:13 +08:00
}
image_update_notify();