下载镜像
[root@MuYu mysql]# docker pull mysql:5.7
在 usr/local/docker 下
# 创建文件夹
[root@ZL docker] # mkdir mysql
# 打开文件夹
[root@ZL docker] # cd mysql
创建挂在目录
# 创建配置文件目录
[root@ZL mysql]# mkdir config
# 打开config
[root@ZL mysql]# cd config/
# 编写配置文件
[root@ZL config]# vim my.cnf
配置文件内容
[client]
# 端口号
port=3306
[mysql]
no-beep
default-character-set=utf8mb4