Issue with Communication Between Services Using Docker Compose
I am facing a communication issue between two services within the same Docker container using Docker Compose. My docker-compose.yml file: services: web_frontend: container_name: web_frontend hostname: web_frontend build: context: ./vero_webapp dockerfile: Dockerfile_nextjs ports: - "3000:3000" depends_on: - web_backend web_backend: container_name: web_backend…