Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 479 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 479 Bytes

Setup

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

Troubleshooting

  • The apache webserver expects the directory public within the folder app, 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.