PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Istvan Dobrentei   PHP Timesheet Management System   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Timesheet Management System
Manage project tasks and the respective work times
Author: By
Last change:
Date: 6 years ago
Size: 512 bytes
 

Contents

Class file image Download
version: '2' services: nginx: build: ./docker/nginx/ ports: - 80:80 links: - php7 volumes_from: - app php7: build: ./docker/php/php7/ expose: - 9000 volumes_from: - app app: image: php:7.1-fpm volumes: - /Users/joeblack/Documents/www/timesheet-manager:/var/www/html - ./docker/nginx/conf.d:/etc/nginx/conf.d - ./docker/nginx/etc/nginx.conf:/etc/nginx/nginx.conf - ./docker/php/php.ini:/usr/local/etc/php/php.ini command: "true"