PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Nahidul Hasan   Simple PHP Framework Application   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Framework Application
Example MVC application with the Symfony framework
Author: By
Last change:
Date: 6 months ago
Size: 334 bytes
 

Contents

Class file image Download
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