Execute initialization sql when docker mysql starts

Execute initialization sql when docker mysql starts

1. Pull the Mysql image

docker pull mysql:5.7

2. Check the mysql image

docker inspect mysql:5.7
"Entrypoint": [
 "docker-entrypoint.sh"
 ],

3. Create a directory for MySQL plugin locally

##Mount to the container/docker-entrypoint-initdb.d; 01_create_database.sql will be executed when MySQL starts
/root/mysql-5.7/init-data
  01_create_database.sql
  ##content
  create database test_database DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
  grant all privileges on `test_database`.* to 'test_user'@'%' identified by '123456';
  flush privileges;

##Mount to the container /var/lib/mysql
/root/mysql-5.7/mysql

4. Start mysql

docker run -p 33336:3306 -v /root/mysql-5.7/mysql:/var/lib/mysql -v /root/mysql-5.7/init-data:/docker-entrypoint-initdb.d -e MYSQL_ROOT_PASSWORD=123456 --name mysql_5.7 -d mysql/mysql:5.7

5. Enter the container, log in to mysql, and check that the library test_database has been created

docker exec -ti <containerID> sh
mysql -uroot -p123456
show databases;

Summarize

The above is what I introduced to you about how to execute initialization sql when docker mysql starts. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Docker starts MySQL configuration implementation process
  • How to automatically execute SQL statements when MySQL in Docker starts
  • Solution to MySQL initialization and startup failure in Docker
  • How to quickly start MySQL testing using Docker on Mac
  • How to initialize the Mysql database when the Docker container starts
  • Docker starts the mysql service implementation steps

<<:  Several magical uses of JS ES6 spread operator

>>:  Detailed installation process of mysql5.7.21 under win10

Recommend

Essential conditional query statements for MySQL database

Table of contents 1. Basic grammar 2. Filter by c...

10 excellent Web UI libraries/frameworks

1. IT Mill Toolkit IT Mill Toolkit is an open sou...

Introduction to Semantic HTML Tags

In the past few years, DIV+CSS was very popular in...

HTML meta viewport attribute detailed description

What is a Viewport Mobile browsers place web pages...

This article will show you the basics of JavaScript: deep copy and shallow copy

Table of contents Shallow copy Deep Copy Replenis...

Integration practice of Vue+Element background management framework

Table of contents Vue+ElementUI background manage...

Vue realizes the function of book shopping cart

This article example shares the specific code of ...

Record the steps of using mqtt server to realize instant communication in vue

MQTT Protocol MQTT (Message Queuing Telemetry Tra...

Database index knowledge points summary

Table of contents First Look Index The concept of...

Three common uses of openlayers6 map overlay (popup window marker text)

Table of contents 1. Write in front 2. Overlay to...

About nginx to implement jira reverse proxy

Summary: Configure nginx reverse proxy jira and i...

Detailed explanation of Promises in JavaScript

Table of contents Basic usage of Promise: 1. Crea...