PHP Classes

File: sibo_backend/docker-compose.yml

Recommend this page to a friend!
  Packages of Robert Devenyi   Sibo Meal Planner   sibo_backend/docker-compose.yml   Download  
File: sibo_backend/docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Sibo Meal Planner
App to help treat the SIBO health condition
Author: By
Last change:
Date: 7 months ago
Size: 810 bytes
 

Contents

Class file image Download
version: '3.3' services: app: build: context: . dockerfile: Dockerfile container_name: sibo_backend volumes: - ./:/var/www/html networks: - laravel webserver: image: nginx:alpine container_name: laravel_server ports: - "8080:80" volumes: - ./:/var/www/html - ./docker/nginx.conf:/etc/nginx/conf.d/default.conf depends_on: - app networks: - laravel # db: # image: mysql:8.0 # container_name: laravel_db # environment: # MYSQL_ROOT_PASSWORD: root # MYSQL_DATABASE: laravel # MYSQL_USER: laraveluser # MYSQL_PASSWORD: laravelpass # ports: # - "3306:3306" # volumes: # - dbdata:/var/lib/mysql # networks: # - laravel volumes: dbdata: networks: laravel: