blob: 2635a91b2cae70ebdf161285a8a0a1ca7d2a79c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
services:
web:
image: nginx:alpine
restart: unless-stopped
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf
- ./:/var/www/html:ro
ports:
- '80:80'
php:
image: php:8-fpm
restart: unless-stopped
volumes:
- ./:/var/www/html:ro
|