PHP Classes

File: docker-compose.yml.example

Recommend this page to a friend!
  Classes of Nahidul Hasan   Lumen PHP JWT API Authentication   docker-compose.yml.example   Download  
File: docker-compose.yml.example
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lumen PHP JWT API Authentication
Create an API that supports JSON Web tokens
Author: By
Last change:
Date: 4 years ago
Size: 686 bytes
 

Contents

Class file image Download
version: '2' services: nginx: image: nginx:latest ports: - 8084: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=common404" - "MYSQL_DATABASE=lumen_api" volumes: - ${BACKUP_DATA_PATH}/mysql3:/var/lib/mysql ports: - "33067:3306"