docker下MySQL镜像的使用方法

预习:

使用到的docker命令:

docker images   显示本地有的镜像

docker pull +镜像名称   从docker hub上面拉取镜像

docker run
   --name  定义容器的名称

   -d  让docker容器在后台运行到

   -a 查看已经创建的容器

   -s  查看启动的容器

docker start docker_name   启动名称为docker_name的容器

docker stop docker_name   关闭名称为docker_name的容器

docker rm docker_name     删除名称为docker_name的容器

docker rmi docker_name   删除名称为docker_name的镜像

docker rename old_name new_name 给容器重命名

操作:

[root@localhost ~]# docker pull mysql   拉取镜像

[root@localhost ~]# docker images|grep mysql   查看镜像
docker.io/mysql     latest              6a834f03bd02        2 weeks ago         484 MB
[root@localhost ~]# docker run -e MYSQL_ROOT_PASSWORD=123456 --name mysql -it mysql      启动一个容器

[root@localhost ~]# docker ps -s      查看正在运行的容器
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                 NAMES               SIZE
dc1c39266b16        mysql               "docker-entrypoint..."   3 days ago          Up 2 hours          3306/tcp, 33060/tcp   mysql               119 B (virtual 484 MB)
连接MySQL数据库

[root@localhost ~]# docker exec -it dc1c39266b16 bash
root@dc1c39266b16:/# mysql -uroot -p         
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.12 MySQL Community Server - GPL
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
已经连接上数据库了。

 

转载于:https://www.cnblogs.com/winter1519/p/9696808.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值