Docker + nginx + MySQL + PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
393 B

#基于哪个镜像制作,3.14会有问题
FROM alpine:3.13
#工作目录
WORKDIR /opt
# 确保 nginx 用户有权限访问复制的文件
COPY sh/* /opt/
#执行安装脚本
RUN sh install_nginx.sh
#健康检查
HEALTHCHECK --interval=10s --timeout=5s \
CMD curl -fs http://localhost/ || exit 1
#暴露端口
EXPOSE 80 443 10000-10100
#运行启动脚本和nginx
CMD ["/usr/sbin/run.sh"]