-- run the stop the mysql container
docker run --name mysql -e MYSQL_ROOT_PASSWORD=password123 -e MYSQL_DATABASE=user -p 3306:3306 -d mysql

-- stop the mysql container
docker stop mysql

-- remove the stop the mysql container
docker rm mysql
