centos前台运行mysql

2022-01-13 00:00:00 docker centos mysql

我正在为 mysql 数据库构建 docker 映像.为此,我必须在前台运行 mysql 而不是作为守护程序服务.我正在使用 centos 基础映像.如何在前台运行mysql?

I am building a docker image for a mysql database. For that purpose, I have to run mysql in the foreground and not as a deamon service. I am using a centos base image. How to run mysql in the foreground?

推荐答案

如果你运行mysqld_safe

CMD ["mysqld_safe"]

进程应该在前台并阻塞.

The process should be in the foreground and blocking.

不过,正如上面的评论所暗示的,您应该考虑使用几个官方支持的 MySQL 容器.

However as the comments above suggest, there are several official supported MySQL containers which you should consider using.

相关文章