This section covers the initial setup for Docker, including WSL (Windows Subsystem for Linux) configuration.
# Check WSL version
wsl --status
# Set WSL 1 as default (if needed)
wsl --set-default-version 1
# Check Docker version
docker versionIf you are running MySQL locally on Windows, you might need to manage the service to avoid port conflicts with a MySQL container.
# Stop the local MySQL service
net stop MYSQL80
# Start the local MySQL service
net start MYSQL80