- Download the file docker-compose.yml
- In the console, write docker-compose up -d and press Enter
- In the browser write http://localhost:8085 and press Enter
Open the project and select Persistence layer as Startup Project
- Open Tools > NuGet Package Manager > Package Manager Console
- In Default Project, select Persistence
- Write Update-Database, then press Enter
Open SQL Server
- Select PedidoDB
- Open new query
- Run this query
INSERT INTO [Cliente] VALUES
('Breidyn', 'Rios', '12345678'),
('Pedro', 'Lopez', '11223344'),
('Juan', 'Perez', '11114444')
GO
INSERT INTO [Producto] VALUES
('Gaseosa'),
('Atún'),
('Sublime'),
('Yogurt'),
('Cereal')Select WebApp layer as Startup Project, then run the project.