Simple steps to create a MySQL container with Docker

Simple steps to create a MySQL container with Docker

Preface

We have already installed Docker and have a brief understanding of Docker. Here are some simple steps to create a MySQL container with Docker. Without further ado, let's take a look at the detailed introduction.

The steps are as follows

1. Start the docker service

[root@docker ~]# systemctl start docker

2. View the image in docker

[root@docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
centos/mysql-57-centos7 latest 2e4ddfafaa6f 6 months ago 445MB
gogs/gogs-latest 2fb3b88053d6 6 months ago 94.2MB

3. Search for the image name you want to query

[root@docker ~]# docker search mysql
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
mysql MySQL is a widely used, open-source relation… 7854 [OK]    
mariadb MariaDB is a community-developed fork of MySQL… 2604 [OK]    
cloudfoundry/cf-mysql-ci Image used in CI of cf-mysql-release 0 
[root@localhost ~]# docker pull mysql ---------------------Download the latest version by default [root@localhost ~]# docker pull mysql:5.7--------------------Download the specified version

4. Create and run a mysql container

[root@docker ~]# docker run -di --name=test_mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=root centos/mysql-57-centos7
d7e5f99b502a904a970026e90227e186107e3b5d0baeaa93491af12cd7317b99
run: create and run -di: create in daemon mode --name: give the container a name -p: port mapping -e: initialize the Mysql user and set the root password to root

The last thing to fill in is the name of the image. If you do not specify a version, the latest one will be created by default.

5. View running containers

[root@docker ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
d7e5f99b502a centos/mysql-57-centos7 "container-entrypoint..." 5 seconds ago Up 4 seconds 0.0.0.0:3306->3306/tcp test_mysql

6. You can use the database tool on your computer to connect to the database in the virtual machine

IP is the IP connected to the virtual machine, account: root, password: root

7. In fact, as long as you can pull a mirror, the others are similar (such as redis, mogodb, rabbitmq, etc.)

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the problem of not being able to obtain the hostname of the host in the docker container
  • Directory permissions when creating a container with Docker
  • Detailed explanation of creating a MySQL container with Docker and connecting to the container through the command line
  • How to create a MySQL container with Docker
  • Detailed process of modifying hostname after Docker creates a container

<<:  Detailed explanation of this reference in React

>>:  mysql5.7.17 installation and configuration example on win2008R2 64-bit system

Recommend

Vue gets token to implement token login sample code

The idea of ​​using token for login verification ...

Learn the basics of nginx

Table of contents 1. What is nginx? 2. What can n...

JavaScript ECharts Usage Explanation

I used ECharts when doing a project before. Today...

Detailed process of installing nginx1.9.1 on centos8

1.17.9 More delicious, really Nginx download addr...

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux...

Let you understand how HTML and resources are loaded

All content in this blog is licensed under Creati...

How to make React components full screen

introduce This article is based on React + antd t...

Implementation of MySQL select in subquery optimization

The following demonstration is based on MySQL ver...

Six ways to reduce the size of Docker images

Since I started working on Vulhub in 2017, I have...

Detailed tutorial on using Docker to build Gitlab based on CentOS8 system

Table of contents 1. Install Docker 2. Install Gi...

Pure CSS3 realizes the effect of div entering and exiting in order

This article mainly introduces the effect of div ...

W3C Tutorial (15): W3C SMIL Activities

SMIL adds support for timing and media synchroniz...

Detailed analysis of the MySQL slow log opening method and storage format

In development projects, we can monitor SQL with ...