execute the following commands to build and run the docker container
cd fullstack
docker-compose build
docker-compose up -d mongo
docker-compose up -d app
docker-compose up -d clientNow the backend is running on port 4000 and frontend is running on port 3000, you can check it by hitting the following url
http://localhost:4000
http://localhost:3000command for enlisting the docker images
docker imagescommand for stopping the docker compose
docker-compose stopcommand for enlisting the docker containers
docker ps -acommand for deleting the docker images
docker rmi <image id>