i am trying to run docker-compose up command in windows but i am getting this error
here is my compose.yaml file
`
# version of docker compose
version: '3.8'
services:
# web service for react
web:
# where the docker file is located and other files to build docker image
build: ./
ports:
- 5173:5173
volumes:
- .:/app
- /app/node_modules
develop:
watch:
- path: ./package.json
action: rebuild
- path: ./package-lock.json
action: rebuild
- path: ./
target: /app
action: sync
`
please tell me how to resolve this error and also why this error is happening ,
i have recently installed docker with the latest version