Step 4 : Modify the Nginx configuration file to suit your site’s URL requirements.
Step 5 : Database Creation
Run this cmd in your ubuntu instantce
docker exec -it mysql mysql -u root -p
First, we’ll create a database that Magento can write data to. In this example, the database will be called myshop, but you can name it whatever you prefer.
CREATE DATABASE myshop;
USE myshop;
EXIT;
Launch Windows PowerShell and execute the following command