version: '2'
services:
nginx:
image: nginx:latest
ports:
- 8097:80
volumes:
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
volumes_from:
- php
php:
build: ./docker/php/
volumes:
- .:/var/www/html
- ./docker/php/custom.ini:/usr/local/etc/php/conf.d/custom.ini
|