
In order to create a docker
File Name: mysql-docker-compose.ymlversion: '3.8'
services:
uat_mysql_db:
image: mysql:latest
restart: always
volumes:
- "./.mysql-data/db:/Users/code2care/docker-volumes"
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root123
MYSQL_DATABASE: my_uat
MYSQL_USER: mysqluser
MYSQL_PASSWORD: mysqluser123
Docker MySQL Compose file details:
- version: It is the version of the docker-compose file, this should be based on your docker engine - know more: Compatibility matrix
- services: To define the list of services, we just have one here with name ie. uat_mysql_db,
- image: The name of the MySQL docker image with the tag as the latest, you can choose a tag with a specific version of MySQL e.g. 5.7 etc: https://hub.docker.com/_/mysql/tags
- restart: We always want to restart the container if it fails for some reason.
- volumes: We want to store the MySQL files on the local device at the specified location.
- ports: Exposing the local MySQL 3306 port to host device 3306 port.
- environment: Defined the MySQL root user password and optional superuser and password.
Running the MySQL Docker Compose file
Make sure you run the command from the directory where you have the .yml file.
% docker compose -f mysql-docker-compose.yml up
Logging into the MySQL prompt using root user
# docker exec -it my-docker-scripts-uat_mysql_db-1 /bin/sh
sh-4.4# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.30 MySQL Community Server - GPL
..
..
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| my_uat |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.02 sec)
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!