You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web/Sources/docker-compose-local.yml

16 lines
267 B

version: '3'
services:
web:
image: nginx:latest
ports:
- "8080:80"
volumes:
- ./public:/var/www/html
- ./config/nginx.conf:/etc/nginx/conf.d
links:
- php
php:
image: php:7.4-fpm
volumes:
- ./src:/var/www/html