ambient/docker-compose.yml
2024-12-13 13:16:59 +01:00

14 lines
264 B
YAML

services:
web:
image: nginx:latest
ports:
- '8080:80'
volumes:
- ./src:/var/www/html
- ./default.conf:/etc/nginx/conf.d/default.conf
links:
- php-fpm
php-fpm:
image: php:8-fpm
volumes:
- ./src:/var/www/html