PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of TJ Webb   Laravel GraphQL Server   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel GraphQL Server
API server to demonstrate GraphQL query language
Author: By
Last change:
Date: 2 years ago
Size: 602 bytes
 

Contents

Class file image Download
version: '2' services: mariadb: image: 'bitnami/mariadb:10.1' environment: - ALLOW_EMPTY_PASSWORD=yes - MARIADB_USER=my_user - MARIADB_DATABASE=my_database - MARIADB_PASSWORD=my_password myapp: tty: true image: bitnami/laravel:6-debian-9 environment: - DB_HOST=mariadb - DB_USERNAME=my_user - DB_DATABASE=my_database - DB_PASSWORD=my_password depends_on: - mariadb ports: - 3000:3000 volumes: - ./:/app # privileged: true # Privileged mode could be required to run this container under Windows