2022-05-01 16:28:54 +02:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
web:
|
|
|
|
image: nginx:latest
|
|
|
|
ports:
|
|
|
|
- "8080:80"
|
|
|
|
volumes:
|
|
|
|
- ./www:/var/www/html
|
2022-12-09 01:32:46 +01:00
|
|
|
- ./docker-nginx-conf/default.conf:/etc/nginx/conf.d/default.conf
|
2022-05-01 16:28:54 +02:00
|
|
|
php-fpm:
|
2023-11-14 18:07:16 +01:00
|
|
|
image: php:development
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: php.Dockerfile
|
2022-05-01 16:28:54 +02:00
|
|
|
volumes:
|
|
|
|
- ./www:/var/www/html
|