Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 403 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 403 Bytes

Docker Alpine Apache PHP

$ docker run --name alpine-apache-php -v $(pwd):/app -p 80:80 --link mysql:mysql -d -t dflourusso/alpine-apache-php

Apache will search an index.php in ./public

Folder structure example:

.
├── ...
├── src      
│   ├── App.php
│   └── ...
├── public   
│   └── index.php  
└── ...