配置 PHPWind 镜像部署 PHPWind 论坛系统(Linux)
1、准备环境
确保服务器已经安装了 Linux 操作系统。
安装 Docker 和 Docker Compose。
2、下载 PHPWind 镜像
访问 PHPWind 官方镜像仓库:https://github.com/phpwind/docker
克隆仓库到本地:git clone https://github.com/phpwind/docker.git
3、创建 Docker Compose 文件
在 docker
目录下创建一个名为 dockercompose.yml
的文件。
编辑 dockercompose.yml
文件,添加以下内容:
version: '3' services: db: image: mysql:5.7 container_name: phpwind_db environment: MYSQL_ROOT_PASSWORD: your_password MYSQL_DATABASE: phpwind MYSQL_USER: phpwind MYSQL_PASSWORD: your_password volumes: db_data:/var/lib/mysql restart: always web: image: phpwind/phpwind:latest container_name: phpwind_web depends_on: db environment: DB_HOST: db DB_USER: phpwind DB_PASSWORD: your_password DB_NAME: phpwind ports: "80:80" restart: always volumes: db_data: {}
4、修改数据库密码和端口号
将 your_password
替换为你想要设置的数据库密码。
如果需要修改 Web 服务器的端口号,请将 80
替换为你想要使用的端口号。
5、启动 PHPWind 论坛系统
在 docker
目录下运行以下命令启动 PHPWind 论坛系统:dockercompose up d
如果一切正常,你将看到类似以下的输出:
Creating network "phpwind_default" with the default driver Creating volume "phpwind_db_data" with default driver Creating container "phpwind_db" with ID b9a6c6f9e2b1 Creating container "phpwind_web" with ID ab1c2d3e4f5g
6、访问 PHPWind 论坛系统
在浏览器中输入服务器 IP 地址或域名,然后加上你在步骤 5 中设置的端口号,http://your_server_ip:your_port
。
如果一切正常,你应该能看到 PHPWind 论坛系统的登录页面。
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/679104.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复