Build the PHP container
Build the custom PHP image & start the containers
git clone https://github.com/michaelkeiluweit/dev_stack.git --branch=php
docker build --tag=mkphp .
docker-compose up -d
- The apache webserver expects the directory
publicwithin the folderapp, as it is the document root.
In case the entrypoint of your project is different to public, a workaround could be to create a symlink:ln -s src/public/ public.