18 lines
333 B
YAML
18 lines
333 B
YAML
services:
|
|
php:
|
|
image: php:8.2-fpm
|
|
container_name: nginx-php_php
|
|
volumes:
|
|
- ./www:/var/www/html
|
|
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx-php_nginx
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./www:/var/www/html
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
depends_on:
|
|
- php
|