To view all the commands you can use in your docker installation use the following docker –version you can also use the help command to get the list of available commands as: docker help to get information about any specific command use: docker help <command name> for example to get information about run command: docker […]
docker
Run MySQL Server in a docker container
You can pull the MySQL image from the docker hub and run the container.So,you will be able to run MySQL on your machine without installing it.These are the main steps you need to follow for donaloding and running MySQL docker container on your local machine:- 1.pull image from docker hub docker pull mysql/mysql-server:latest 2.This will […]