This is a simple way to get php running locally without much setup.
-
Install docker : https://www.docker.com/
-
Open your console / terminal and navigate to where you've downloaded this project.
-
Build the project (change mysite to whatever you want the image to be called)
docker build -t mysite .
- Run the project (With Mount)
docker run -p 8080:80 -d -v /users/you/projectFolder/www:/var/www/site mysite
- View in browser
http://localhost:8080/