Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 443 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 443 Bytes

PHP-FPM Docker image for Laravel

Docker image for a php-fpm container crafted to run Laravel based applications.

docker-compose usage:

version: '2'
services:
    php-fpm:
        image: erfun/laravel-lumen:latest
        volumes:
            - ./:/var/www/
            - ~/.ssh:/root/.ssh # can be useful for composer if you use private CVS
        networks:
            - my_net #if you're using networks between containers