15 lines
250 B
YAML
15 lines
250 B
YAML
version: "3"
|
|
|
|
services:
|
|
web:
|
|
image: nginx:latest
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./www:/var/www/html
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
|
php-fpm:
|
|
image: php:8-fpm
|
|
volumes:
|
|
- ./www:/var/www/html
|