无法为 mysql docker 容器设置自定义配置文件
Can't set custom configuration file for mysql docker container
我正在使用 Mysql 图片 (https://hub.docker.com/r/library/mysql/)。我想使用自定义 conf 文件来覆盖 sql 模式,但我遇到了一些困难。
当我单击更改按钮所在的第一行时,它显示该文件夹中没有文件,但那里有一个 my.cnf
文件。
我需要在某处进行额外的更改吗?
到 run/start 容器,我使用了这个命令 docker run --name some-mysql -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag
但使用了我的数据。
谢谢!
conf 文件的权限有问题。
我正在使用 Mysql 图片 (https://hub.docker.com/r/library/mysql/)。我想使用自定义 conf 文件来覆盖 sql 模式,但我遇到了一些困难。
当我单击更改按钮所在的第一行时,它显示该文件夹中没有文件,但那里有一个 my.cnf
文件。
我需要在某处进行额外的更改吗?
到 run/start 容器,我使用了这个命令 docker run --name some-mysql -v /my/custom:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mysql:tag
但使用了我的数据。
谢谢!
conf 文件的权限有问题。