docker entrypoint 必须有没有退出的进程 才能不退出,可以用 -dit 来不让docker容器退出 (-d 后台执行,-i 交互,-t 终端) 自己做好的镜像 Dockerfile FROM php-centos:php-nginx EXPOSE 80 CMD [ "sh", "-c", "lnmp start; bash"] docker build -t php-centos:autostart . 执行次命令,容器就不会退出...
docker entrypoint 必须有没有退出的进程 才能不退出,可以用 -dit 来不让docker容器退出 (-d 后台执行,-i 交互,-t 终端) 自己做好的镜像 Dockerfile FROM php-centos:php-nginx EXPOSE 80 CMD [ "sh", "-c", "lnmp start; bash"] docker build -t php-centos:autostart . 执行次命令,容器就不会退出...