Docker image for laravel(lumen) application. Include supervisor for run queue and php-fpm. Used Alpine linux.
## docker-compose config example
services:
php:
image: idleo/lardo:latest
volumes:
- .:/var/www
# Option: may change default config
# For example supervisor
- '${PWD}/docker/php/:/etc/supervisor.d/'
networks:
- <you-network>Build
docker build .