文章描述测试
Docker安装Typecho
安装镜像
1
| docker pull 80x86/typecho
|
实例化
1
| docker run -d --name=typecho-blog --restart always -e PHP_TZ=Asia/Shanghai -e PHP_MAX_EXECUTION_TIME=600 -p 8081:80 80x86/typecho:latest
|
8081:80将本地的8081端口映射到容器的80端口
查看ip信息
xx为实例id前两位
ip:172.17.0.4
安装nginx
安装mysql
1
| docker run --name mysql-test -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:latest
|
在shell中访问mysql
1
| docker exec -it mysql-test bash
|
在shell中输入
1
| mysql -uroot -p -h localhost
|
出现mysql后输入
教程
教程
选择数据库
1
| create user 'root'@'localhost' identified by '123456';
|
上面代码没有作用
1
| create user 'typecho'@'%' identified by '@typecho'
|
1
| grant select,insert,update,delete,create on typecho.* to typecho;
|