2016-11-25 14:24:48 +00:00
|
|
|
|
## 使用 Wordpress
|
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
Compose 可以很便捷的让 Wordpress 运行在一个独立的环境中。
|
2015-01-14 06:09:38 +00:00
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
首先下载 Wordpress 到当前目录:
|
|
|
|
|
|
|
|
|
|
```bash
|
2015-01-14 06:09:38 +00:00
|
|
|
|
wordpress.org/latest.tar.gz | tar -xvzf -
|
|
|
|
|
```
|
2015-01-14 13:52:19 +00:00
|
|
|
|
这将会创建一个叫 wordpress 目录,你也可以重命名成你想要的名字。在目录里面,创建一个 `Dockerfile` 文件,定义应用的运行环境:
|
2015-01-14 06:09:38 +00:00
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
```docker
|
2015-01-14 06:09:38 +00:00
|
|
|
|
FROM orchardup/php5
|
|
|
|
|
ADD . /code
|
|
|
|
|
```
|
2015-01-14 13:52:19 +00:00
|
|
|
|
以上内容告诉 Docker 创建一个包含 PHP 和 Wordpress 的镜像。更多关于如何编写 Dockerfile 文件的信息可以查看 [镜像创建](../image/create.md#利用 Dockerfile 来创建镜像) 和 [Dockerfile 使用](../dockerfile/README.md)。
|
2015-01-14 06:09:38 +00:00
|
|
|
|
|
|
|
|
|
|
2016-11-25 14:24:48 +00:00
|
|
|
|
下一步,`docker-compose.yml` 文件将开启一个 web 服务和一个独立的 MySQL 实例:
|
2015-01-14 06:09:38 +00:00
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
```yaml
|
|
|
|
|
version: "3"
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
|
|
web:
|
|
|
|
|
build: .
|
|
|
|
|
command: php -S 0.0.0.0:8000 -t /code
|
|
|
|
|
ports:
|
|
|
|
|
- "8000:8000"
|
|
|
|
|
links:
|
|
|
|
|
- db
|
|
|
|
|
volumes:
|
|
|
|
|
- .:/code
|
|
|
|
|
db:
|
|
|
|
|
image: orchardup/mysql
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_DATABASE: wordpress
|
2015-01-14 06:09:38 +00:00
|
|
|
|
```
|
|
|
|
|
要让这个应用跑起来还需要两个文件。
|
2016-11-25 14:24:48 +00:00
|
|
|
|
第一个,`wp-condocker-compose.php` ,它是一个标准的 Wordpress 配置文件,有一点需要修改的是把数据库的配置指向 `db` 容器。
|
2015-01-14 06:09:38 +00:00
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
```php
|
2015-01-14 06:09:38 +00:00
|
|
|
|
<?php
|
|
|
|
|
define('DB_NAME', 'wordpress');
|
|
|
|
|
define('DB_USER', 'root');
|
|
|
|
|
define('DB_PASSWORD', '');
|
|
|
|
|
define('DB_HOST', "db:3306");
|
|
|
|
|
define('DB_CHARSET', 'utf8');
|
|
|
|
|
define('DB_COLLATE', '');
|
|
|
|
|
|
|
|
|
|
define('AUTH_KEY', 'put your unique phrase here');
|
|
|
|
|
define('SECURE_AUTH_KEY', 'put your unique phrase here');
|
|
|
|
|
define('LOGGED_IN_KEY', 'put your unique phrase here');
|
|
|
|
|
define('NONCE_KEY', 'put your unique phrase here');
|
|
|
|
|
define('AUTH_SALT', 'put your unique phrase here');
|
|
|
|
|
define('SECURE_AUTH_SALT', 'put your unique phrase here');
|
|
|
|
|
define('LOGGED_IN_SALT', 'put your unique phrase here');
|
|
|
|
|
define('NONCE_SALT', 'put your unique phrase here');
|
|
|
|
|
|
|
|
|
|
$table_prefix = 'wp_';
|
|
|
|
|
define('WPLANG', '');
|
|
|
|
|
define('WP_DEBUG', false);
|
|
|
|
|
|
|
|
|
|
if ( !defined('ABSPATH') )
|
|
|
|
|
define('ABSPATH', dirname(__FILE__) . '/');
|
|
|
|
|
|
|
|
|
|
require_once(ABSPATH . 'wp-settings.php');
|
|
|
|
|
```
|
|
|
|
|
第二个,`router.php` ,它告诉 PHP 内置的服务器怎么运行 Wordpress:
|
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
```php
|
2015-01-14 06:09:38 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$root = $_SERVER['DOCUMENT_ROOT'];
|
|
|
|
|
chdir($root);
|
|
|
|
|
$path = '/'.ltrim(parse_url($_SERVER['REQUEST_URI'])['path'],'/');
|
|
|
|
|
set_include_path(get_include_path().':'.__DIR__);
|
|
|
|
|
if(file_exists($root.$path))
|
|
|
|
|
{
|
|
|
|
|
if(is_dir($root.$path) && substr($path,strlen($path) - 1, 1) !== '/')
|
|
|
|
|
$path = rtrim($path,'/').'/index.php';
|
|
|
|
|
if(strpos($path,'.php') === false) return false;
|
|
|
|
|
else {
|
|
|
|
|
chdir(dirname($root.$path));
|
|
|
|
|
require_once $root.$path;
|
|
|
|
|
}
|
|
|
|
|
}else include_once 'index.php';
|
|
|
|
|
```
|
|
|
|
|
|
2017-10-31 16:20:30 +00:00
|
|
|
|
这些配置文件就绪后,在你的 Wordpress 目录里面执行 `docker-compose up` 指令,Compose 就会拉取镜像再创建我们所需要的镜像,然后启动 web 和数据库容器。 接着访问 docker 守护进程监听的 8000 端口就能看你的 Wordpress 网站了。
|