alpine创建lnmp环境alpine安装nginx+php5.6+mysql

以下是在Alpine Linux上安装Nginx、PHP 5.6和MySQL的Dockerfile示例:




# 使用Alpine Linux作为基础镜像
FROM alpine:latest
 
# 维护者信息
LABEL maintainer="yourname@example.com"
 
# 设置环境变量
ENV NGINX_VERSION 1.16.1
ENV PHP_VERSION 5.6.40
ENV MYSQL_VERSION 5.7.31
ENV STABLE_REPOSITORY http://dl-cdn.alpinelinux.org/alpine/latest-stable/main
ENV REPOSITORY_KEY_URL https://alpine.github.io/alpine-makepkg/release/x86_64.APKA.gpg
ENV INSTALL_DIR /usr/local
ENV PHP_INI_DIR /etc/php5.6
ENV NGINX_CONF_DIR /etc/nginx/conf.d
 
# 安装Nginx
RUN apk add --no-cache --virtual .build-deps \
    gcc \
    libc-dev \
    make \
    openssl-dev \
    pcre-dev \
    zlib-dev \
    linux-headers \
    && wget ${STABLE_REPOSITORY}/g/nginx/nginx-${NGINX_VERSION}.tar.gz \
    && tar -zxvf nginx-${NGINX_VERSION}.tar.gz --strip-components=1 \
    && ./configure --prefix=/usr/local/nginx --with-http_ssl_module \
    && make install \
    && apk del .build-deps \
    && rm /nginx-${NGINX_VERSION}.tar.gz
 
# 安装PHP 5.6
RUN apk add --no-cache --virtual .build-deps $PHPIZE_DEPS \
    && wget ${STABLE_REPOSITORY}/p/php5/php5-${PHP_VERSION}.tar.gz \
    && tar -zxvf php5-${PHP_VERSION}.tar.gz --strip-components=1 \
    && ./configure --prefix=/usr/local/php5 --with-curl --with-freetype-dir --with-gd --with-gettext --with-iconv-dir --with-kerberos --with-libxml-dir --with-mysqli --with-openssl --with-pcre-regex --with-pear --with-pdo-mysql --with-xmlrpc --with-zlib --enable-bcmath --enable-fpm --enable-mbstring --enable-sockets --enable-zip \
    && make install \
    && apk del .build-deps \
    && rm /php5-${PHP_VERSION}.tar.gz
 
# 安装MySQL
RUN wget https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm \
    && rpm -ivh mysql57-community-release-el7-11.noarch.rpm \
    && yum install -y mysql-community-server \
    && rm /mysql57-community-release-el7-11.noarch.rpm
 
# 移除不必要的文件
RUN find / -type f -name '*.apktools.yml' -delete \
    && find / -type f -name '*.apktools.json' -delete \
    && find / -type f -name '*.apk' -delete
 
# 暴露端口
EXPOSE 80 3306
 
# 启动Nginx
CMD ["/usr/local/nginx/sbin/nginx", "-g"

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日