Why can't I get response from my Docker/ReactPHP app outside the container?
I have faced with the problem! Can't get the response from browser or postman in my Docker/ReactPHP app. This is my code: docker-compose.yaml version: '3.8' services: react_php_service2: container_name: react_php_service2 build: context: . dockerfile: ./.docker/php/Dockerfile ports: - "8000:8000" extra_hosts: - "host.docker.internal:host-gateway"…