Add project files

This commit is contained in:
Frank Woeckener
2025-03-18 10:42:10 +01:00
parent e429c37f62
commit dbd89173cd
29 changed files with 816 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
version: '3'
services:
nginx:
ports:
- "8080:80"
volumes:
- ./src:/var/www/html:delegated
environment:
- NGINX_HOST=localhost
- NGINX_PORT=80
php:
build:
context: ./docker/php
dockerfile: Dockerfile.dev
volumes:
- ./src:/var/www/html:delegated
environment:
- PHP_IDE_CONFIG=serverName=docker
extra_hosts:
- "host.docker.internal:host-gateway"
db:
ports:
- "3306:3306"