PHP Classes

File: docker/docker-compose.yml

Recommend this page to a friend!
  Classes of Max Stemplevski   Docker Symfony App   docker/docker-compose.yml   Download  
File: docker/docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Docker Symfony App
Symfony project to deploy using Docker
Author: By
Last change:
Date: 1 year ago
Size: 574 bytes
 

Contents

Class file image Download
version: "3.8" services: php-fpm: container_name: php-fpm build: context: ./../ dockerfile: ./docker/php-fpm/Dockerfile args: - PUID=${PUID} - PGID=${PGID} - INSTALL_XDEBUG=${INSTALL_XDEBUG} environment: PHP_IDE_CONFIG: "serverName=SimfonyApp" volumes: - /var/www/vendor/ - ./../:/var/www/ nginx: container_name: nginx build: context: ./nginx ports: - ${NGINX_HOST_HTTP_PORT}:80 volumes: - ..:/var/www:rw depends_on: - php-fpm volumes: db_data: