2023-10-06 14:25:43 +00:00
|
|
|
version: '3.8'
|
2023-10-06 14:14:32 +00:00
|
|
|
services:
|
2023-10-06 14:25:43 +00:00
|
|
|
nginx:
|
|
|
|
image: nginx
|
2023-10-06 14:14:32 +00:00
|
|
|
ports:
|
2023-10-06 14:25:43 +00:00
|
|
|
- 8081:80
|
2023-10-06 14:14:32 +00:00
|
|
|
volumes:
|
2023-10-06 14:25:43 +00:00
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
2023-10-06 14:14:32 +00:00
|
|
|
- ./app:/var/www/html
|
2023-10-06 14:25:43 +00:00
|
|
|
depends_on:
|
|
|
|
- php
|
|
|
|
restart: unless-stopped
|
2023-10-06 14:14:32 +00:00
|
|
|
|
|
|
|
composer:
|
2023-10-06 14:25:43 +00:00
|
|
|
image: composer
|
2023-10-06 14:14:32 +00:00
|
|
|
volumes:
|
|
|
|
- ./app:/app
|
2023-10-06 14:25:43 +00:00
|
|
|
command: install --no-dev
|
|
|
|
|
|
|
|
php:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: php.Dockerfile
|
|
|
|
volumes:
|
|
|
|
- ./app:/var/www/html
|
|
|
|
- ./php.ini:/usr/local/etc/php/php.ini
|
|
|
|
restart: unless-stopped
|