Centos 7 Docker Image

默认使用 Supervisord 作为入口,同时支持 noop (不启动 Supervisord, 容器内由 shell 执行一个空循环,以确保容器处于运行状态) 和 root 方式 (可直接以 root 进入容器)。


如何使用

FROM movoin/devops-centos

构建机制与生命周期

  • conf/provision/entrypoint.d 容器被启动时,将加载该文件夹中的 shell 文件
  • conf/provision/onbuild.d 容器被构建时,将加载该文件夹中的 shell 文件(只一次,加载完后会删除)
  • conf/provision/install.d 容器被构建之前,将加载该文件夹中的 shell 文件(只一次,加载完后会删除)

启动顺序

  • 当构建容器时 : install.d -> onbuild.d
  • 当启动容器时 : entrypoint.d

拉取镜像

docker pull movoin/devops-centos

更新日志

2018-06-28

  • 创建项目