PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Nahidul Hasan   Gentelella Laravel User Management and CRUD System   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella Laravel User Management and CRUD System
User administration for Laravel applications
Author: By
Last change:
Date: 1 year ago
Size: 693 bytes
 

Contents

Class file image Download
version: '2' services: nginx: image: nginx:latest ports: - 8025: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 links: - database environment: - "DB_PORT=3306" - "DB_HOST=database" database: image: mysql:5.7 environment: - "MYSQL_ROOT_PASSWORD=secret" - "MYSQL_DATABASE=laravel_gentelella" volumes: - ${BACKUP_DATA_PATH}/mysql9:/var/lib/mysql ports: - "33099:3306"