lamp-in-a-box/docker-compose.yml

17 lines
267 B
YAML
Raw Normal View History

2022-04-12 21:22:41 +03:00
version: '3'
services:
nginx:
image: nginx:1.21
ports:
- 80:80
volumes:
- ./configs/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
2022-04-12 21:56:44 +03:00
- ./data/www:/var/www/html:ro
php:
build: builds/php
volumes:
- ./data/www:/var/www/html
2022-04-12 21:22:41 +03:00