Sign inSign up

hujingnb/crontab

By hujingnb

Updated about 4 years ago

Image
0

319

hujingnb/crontab repository overview

自动执行的crontab容器.

Dockerfile

使用方法

命令行执行

docker run -d \
  hujingnb/crontab \
  "* * * * * root command1" \
  "* * * * * root command2" 

compose

version: '3.1'

services:
  crontab:
    image: hujingnb/crontab
    command:
      - "* * * * * root command1"
      - "* * * * * root command2"

此镜像为基础镜像, 可通过FROM安装其他环境

版本更新

v0.1.1

  • fix: 修复脚本中读不到环境变量的问题

Tag summary

Content type

Image

Digest

Size

63.3 MB

Last updated

about 4 years ago

docker pull hujingnb/crontab