下载 wordpress 镜像文件
[root@localhost ~]# docker pull registry.docker-cn.com/library/wordpress
[root@localhost ~]#
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
registry.docker-cn.com/library/wordpress latest fcf3e41b8864 10 days ago 408MB
[root@localhost ~]#
运行
docker run -d --name wordpress_lemon_it_cn -p 8028:80 \
--env MARIADB_HOST=172.******** \
--env MARIADB_PORT_NUMBER=3306 \
--env WORDPRESS_TABLE_PREFIX=lic_ \
--env WORDPRESS_DATABASE_NAME=lemon_it_cn \
--env WORDPRESS_DATABASE_USER=lemon_it_cn \
--env WORDPRESS_DATABASE_PASSWORD=xxxxxxxxxxxxxxx\
--env WORDPRESS_USERNAME=xxxxxxxxxxx\
--env WORDPRESS_PASSWORD=xxxxxxxxxxxxxxxx\
--env WORDPRESS_EMAIL=liuri@lemonit.cn \
--env WORDPRESS_BLOG_NAME=LemoxxxxxxnIT.CN \
-v /data/data/wordpress:/bitnami \
registry.docker-cn.com/bitnami/wordpress
浏览器访问 http://10.32.156.51:8088/ 根据提示自己安装配置 mysql
网友评论