- Install docker engine and docker desktop and docker compose following the instruction in the link below
https://docs.docker.com/get-docker/-
Go to the current working directory and open the Terminal or Command Prompt or PowerShell
-
Enter the command below and waiting until the process finished
docker compose -f docker-compose.dev.yml up -d- After that, try to access
- http://localhost:3001 to check the client side is working or not
- http://localhost:8080 to check the server side is working or not
Move to the working directory and enter the command
docker compose -f docker-compose.dev.yml downEnter the command to show the list of available docker images
docker imagesDelete all the images which relevant on this project
docker rmi esdc_client
docker rmi esdc_server
docker rmi esdc-mysqlType the command below to rebuild the project
docker compose -f docker-compose.dev.yml up -d