first of all i pulled apache image:
docker pull httpd
then i ran my apache on 8080 port
docker run -dit --name httpd -p 8080:80 -v "$PWD":/usr/local/apache2/htdocs/ httpd
i opened 127.0.0.1:8080 and it is ok
i have a file named info.php and it exists in PWD and when i open it in my browser i see php code and it had not been compiled
how can it use php and apache together in docker and how i am able to run php in my browser
im new comer to docker