Docker中的MySQL冻结在root密码配置中

前端之家收集整理的这篇文章主要介绍了Docker中的MySQL冻结在root密码配置中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有下一个dockerfile:

FROM ubuntu:16.04
RUN apt-get update && apt-get upgrade -y && apt-get install -y apache2 MysqL-server MysqL-client

之后,Docker构建问我密码root:

While not mandatory,it is highly recommended that you set a password for the
MysqL administrative "root" user.

If this field is left blank,the password will not be changed.

New password for the MysqL "root" user:

我输入密码,但是,它只是保持该状态.

我可以这样安装MysqL吗?我不想自动安装它

Docker方式是“一个进程的一个容器”.
你需要一个用于apache的容器和一个用于MysqL的容器.
您可以使用official php imageofficial mysql image

为了链接容器,我建议使用docker-compose

原文链接:https://www.f2er.com/docker/436482.html

猜你在找的Docker相关文章