2025-04-12 19:09:40 +01:00
|
|
|
services:
|
|
|
|
php:
|
|
|
|
build:
|
|
|
|
context: ./php-fpm
|
|
|
|
args:
|
|
|
|
PHP_VERSION: ${PHP_VERSION}
|
|
|
|
working_dir: /var/www/html
|
|
|
|
extra_hosts:
|
|
|
|
- host.docker.internal:host-gateway
|
|
|
|
ports:
|
2025-04-14 00:13:30 +01:00
|
|
|
- ${PHP_PORT}:9003
|
2025-04-14 04:32:30 +01:00
|
|
|
container_name: ${PROJECT_NAME}-php
|
|
|
|
volumes:
|
|
|
|
- ${PROJECT_DIRECTORY}:/var/www/html:cached
|