Docker nginx php-fpm not serving php
I'm trying to setup nginx and php-fpm images to work together for a Laravel application. This is my set up: docker-compose.yml version: "3.8" services: server: container_name: nginx build: context: . dockerfile: docker/nginx/Dockerfile volumes: - ./src/public:/var/www/html/public ports: - "8888:80" depends_on: -…