docker

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > 云和虚拟化 > docker > docker 搭建Apache 环境

教你在docker 中搭建 PHP8 + Apache 环境的过程

作者:xiaoShengSanYue

这篇文章主要介绍了docker中搭建 PHP8 + Apache 环境,文章以安装 pdo-mysql 扩展为例介绍php安装扩展的详细过程,需要的朋友可以参考下

镜像介绍

我下载的是下面这个, PHP 版本是 8.0.6

具体操作步骤

命令详解:

以上步骤就可以创建出来一个容器, 使用 docker ps -a 来查看容器

PHP 安装扩展

以安装 pdo-mysql 扩展为例

搭建 PHP 站点

在从 Apache 中映射出来的文件夹中添加站点配置文件, 我这里添加了一个 ceshi.conf的文件

文件内容如下:

<VirtualHost *:80>
	ServerName www.xiaoming.test
	DocumentRoot /var/www/html/api.ceshi.test/public
    <Directory "/var/www/html/api.ceshi.test/public">
        SetOutputFilter DEFLATE
        AllowOverride All
        Require all granted
        DirectoryIndex index.php index.html index.htm default.php default.html default.htm
    </Directory>
	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
apt-get update apt-get -y install vim

到此这篇关于docker 中搭建 PHP8 + Apache 环境的文章就介绍到这了,更多相关docker 搭建Apache 环境内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文