欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Linux Docker安装wordpress的方法详解教程

程序员文章站 2023-11-18 22:45:46
安装mysql服务 下载mysql镜像: docker pull mysql 创建mysql容器并后台运行,指定数据库密码是123456。-e指定环境变量...

安装mysql服务

下载mysql镜像:

docker pull mysql

创建mysql容器并后台运行,指定数据库密码是123456。-e指定环境变量。

docker run --name mysql_db -e mysql_root_password=123456 -d mysql

使用官方的wordpress

wordpress镜像daocloud.io:

docker pull daocloud.io/daocloud/dao-wordpress:latest

拉取镜像前请先登录: docker login daocloud.io(请使用用户名进行 login)。

或者使用wordpress官方镜像:

docker pull wordpress

创建wordpress容器应用并后台运行:

docker run --name some-wordpress --link mysql_db:mysql -p 8001:80 -d daocloud.io/daocloud/dao-wordpress

然后就可以在浏览器通过 (或 ) 访问站点了。

如果想使用外部数据库的话,可以通过上述环境变量设置对应数据库的连接方式:

$ docker run --name some-wordpress -e wordpress_db_host=10.1.2.3:3306 \
  -e wordpress_db_user=... -e wordpress_db_password=... -d wordpress

更多环境变量:

wordpress_db_host 数据库主机地址(默认为与其 link 的 mysql 容器的 ip 和 3306 端口::3306)
wordpress_db_user 数据库用户名(默认为 root)
wordpress_db_password 数据库密码(默认为与其 link 的 mysql 容器提供的 mysql_root_password 变量的值)
wordpress_db_name 数据库名(默认为 wordpress)
wordpress_table_prefix 数据库表名前缀(默认为空,您可以从该变量覆盖 wp-config.php 中的配置)

安全相关(默认为随机的 sha1 值)

wordpress_auth_key
wordpress_secure_auth_key
wordpress_logged_in_key
wordpress_nonce_key
wordpress_auth_salt
wordpress_secure_auth_salt
wordpress_logged_in_salt
wordpress_nonce_salt

如果 wordpress_db_name 变量指定的数据库不存在时,那么 wordpress容器在启动时就会自动尝试创建该数据库,但是由 wordpress_db_user变量指定的用户需要有创建数据库的权限。

dockerfile仓库:

使用fig编排

fig是docker的应用编排工具,主要用来跟 docker 一起来构建基于 docker 的复杂应用,fig 通过一个配置文件来管理多个docker容器,非常适合组合使用多个容器进行开发的场景。目前fig已经升级并更名为compose。compose向下兼容fig。

应用编排工具使得docker应用管理更为方便快捷。 fig网站:

安装fig:

# 方法一:
curl -l https://github.com/docker/fig/releases/download/1.0.1/fig-`uname 
-s`-`uname -m` > /usr/local/bin/fig; chmod +x /usr/local/bin/fig
# 方法二:
yum install python-pip python-dev
pip install -u fig

编写fig.yml:

wordpress:
 image: daocloud.io/daocloud/dao-wordpress:latest
 links:
  - db:mysql
 ports:
  - "8002:80"
db:
 image: mysql
 environment:
  - mysql_root_password=123456
部署应用:
# 启动
fig up
# 启动并后台运行
fig up -d

然后就可以在浏览器通过 (或 ) 访问站点了。

fig logs 查看日志
fig port 查看端口映射

使用外网

wordpress:
 image: daocloud.io/daocloud/dao-wordpress:latest
 environment:
  - wordpress_db_host=119.119.192.246:3306
  - wordpress_db_user=root
  - wordpress_db_password=123456
 ports:
  - "80"

fig命令:

# 停止
fig stop
# 查看日志
fig logs 
# 查看端口 
fig port
# 卸载fig:
pip uninstall fig
# version:
fig --version

注意:fig已升级为compose:

批处理

# 关闭所有正在运行容器
docker ps | awk '{print $1}' | xargs docker stop
# 删除所有容器应用
docker ps -a | awk '{print $1}' | xargs docker rm

以上所述是小编给大家介绍的linux docker安装wordpress的方法详解教程,希望对大家有所帮助