ambient/docker-compose.yml
2024-12-20 15:22:15 +01:00

19 lines
324 B
YAML

services:
php:
build:
context: .
dockerfile: /docker/Dockerfile
volumes:
- .:/var/www/html
expose:
- "9000"
nginx:
image: nginx:alpine
volumes:
- .:/var/www/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "80:80"
depends_on:
- php