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

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