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

15 lines
278 B
YAML

name: ambient
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