Posts

Showing posts from March, 2021

MySQL Docker Container Setup And Configuration On Windows 10

Image
MYSQL Docker Container Setup and Configuration on Windows 10 MYSQL : MySQL is an open-source relational database management system. It can be used for medium and small-size databases. Docker: Docker is a set of platform as a service (PaaS) products that use OS-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software. 1. MySQL Image: First step is to get the latest image from the docker hub. >>> docker pull mysql/mysql-server:latest It will pull the latest MySQL image from the docker hub. 2. Docker images: >>> docker images It will show all the images. 3. Docker container: Now it's time to create a MySQL container from the image. >>> Docker run  -d -p 2233:3306 --name <container name>  docker run -d -p 80:80 docker/getting-started container name could be any name like 'SqlContainer' or 'MysqlContainer' 4. Docker running containers: >>> docke...