PHP Classes

File: docker-compose.yaml

Recommend this page to a friend!
  Classes of jawira   DB Draw PHP UML Diagram Generator   docker-compose.yaml   Download  
File: docker-compose.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: DB Draw PHP UML Diagram Generator
Create a database Entity-Relationship UML diagram
Author: By
Last change:
Date: 2 years ago
Size: 629 bytes
 

Contents

Class file image Download
version: '3.7' services: php: build: context: . dockerfile: resources/dc/php/Dockerfile entrypoint: [ ] command: [ ] tty: true stdin_open: true volumes: - '.:/app' depends_on: - mysql networks: - default mysql: image: mysql:8 command: '--default-authentication-plugin=mysql_native_password' environment: MYSQL_DATABASE: db-draw MYSQL_USER: groot MYSQL_PASSWORD: groot MYSQL_RANDOM_ROOT_PASSWORD: 'yes' volumes: - "./resources/sql:/docker-entrypoint-initdb.d:ro" networks: - default networks: default: