20 lines
353 B
YAML
20 lines
353 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: number-nginx
|
|
ports:
|
|
- "8081:80"
|
|
volumes:
|
|
- ./app:/var/www/html
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
|
|
depends_on:
|
|
- php
|
|
|
|
php:
|
|
image: php:8.2-fpm
|
|
container_name: number-php
|
|
volumes:
|
|
- ./app:/var/www/html
|