WordPress快速安装

准备

  • 一台服务器
  • 一个域名

本文使用的操作系统为 Ubuntu 22.04

一把梭

1
2
apt update -y && apt upgrade -y
apt-get install htop wget curl git -y

安装 Docker、Docker-Compose

一键脚本

拉取仓库

1
cd /opt/ && git clone https://github.com/nezhar/wordpress-docker-compose.git && cd wordpress-docker-compose

编辑用户配置

1
cp env.example .env && nano .env

修改完后保存并退出

启动编排

1
docker-compose up -d

查看容器运行情况

1
docker ps

访问 WordPress 安装页面

浏览器输入http://ip:80/

进入WorpPress安装引导

使用 phpmyadmin 管理数据库

浏览器输入http://ip:8080/

初始用户名为root,密码为.env配置文件中的密码

Https 证书

证书一键申请脚本

1
wget -N --no-check-certificate https://raw.githubusercontent.com/CCCOrz/auto-acme/main/acme.sh && bash acme.sh