Overview
- Full name
docker.io/nicheng12/ms_cron- Registry
- docker.io
- Namespace
- nicheng12
- Repository
- ms_cron
- Cached tags
- 7
- Last synced
- 07/06/2026, 02:40 AM
Introduction
微服务定时任务调度 Web 镜像,可视化配置 Cron 表达式与 HTTP/gRPC 回调,内网微服务定时触发与任务监控平台。
Details
nicheng12/ms_cron 运行微服务 Cron 调度 Web 平台,配置定时任务触发 HTTP/gRPC 回调并记录执行日志。定位为定时调度 Web/API 服务,挂载 db volume 持久化任务;K8s Deployment + Ingress 内网任务调度中心。
快速启动
docker run -d --name ms-cron \
-p 8080:8080 \
docker.io/nicheng12/ms_cron:latest
推荐实践
docker run -d --name ms-cron \
--restart unless-stopped \
-p 8080:8080 \
-v /data/ms-cron:/app/data \
docker.io/nicheng12/ms_cron:1.0.0
核心参数说明
-p 8080:8080— Cron 调度 Web UI 与 API-v .../ms-cron:...— 任务配置持久化--restart unless-stopped— 调度器持续在线- 回调 — HTTP/gRPC 微服务 endpoint
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: ms-cron
spec:
replicas: 1
selector:
matchLabels:
app: ms-cron
template:
metadata:
labels:
app: ms-cron
spec:
containers:
- name: cron
image: docker.io/nicheng12/ms_cron:1.0.0
ports:
- containerPort: 8080
volumeMounts:
- name: data
mountPath: /app/data
volumes:
- name: data
persistentVolumeClaim:
claimName: ms-cron-data
---
apiVersion: v1
kind: Service
metadata:
name: ms-cron
spec:
selector:
app: ms-cron
ports:
- port: 8080
targetPort: 8080
单副本避免重复调度;Ingress 内网 RBAC 保护管理 UI。
Latest tags (20)
View all 7 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/nicheng12/ms_cron :latest | linux/amd64 | 2025/05/16 17:14 | 488.7 MB | sha256:b33257814c43… | |||
docker.io/nicheng12/ms_cron :0.10.4 | linux/amd64 | 2025/05/16 17:13 | 488.7 MB | sha256:b33257814c43… | |||
docker.io/nicheng12/ms_cron :0.10.2 | linux/amd64 | 2025/01/22 15:25 | 489.8 MB | sha256:57c8135ffd75… | |||
docker.io/nicheng12/ms_cron :0.10.1 | linux/amd64 | 2025/01/22 15:22 | 489.8 MB | sha256:57c8135ffd75… | |||
docker.io/nicheng12/ms_cron :0.10.0 | linux/amd64 | 2024/09/20 23:02 | 368.0 MB | sha256:edc3dc0f06e8… | |||
docker.io/nicheng12/ms_cron :0.9.9 | linux/amd64 | 2024/09/14 11:32 | 400.5 MB | sha256:e0629c784d3d… | |||
docker.io/nicheng12/ms_cron :0.9.8 | linux/amd64 | 2024/05/11 15:00 | 386.9 MB | sha256:fee247a08224… |