创建一个文件 文件名为custom.cnf,内容如下:
bash
[root@VM-20-8-centos ~]# cat custom.cnf
[mysqld]
sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'
[root@VM-20-8-centos ~]#
把文件拷贝到mysql容器目录下
bash
docker cp custom.cnf 8befbe2ba5a1:/etc/mysql/conf.d/custom.cnf
这里的8befbe2ba5a1是指容器ID
重启容器即可
bash
docker restart 8befbe2ba5a1