This commit is contained in:
kirill.khorkov
2025-12-17 01:18:27 +03:00
parent 8a93cf8657
commit a7282f7363
394 changed files with 16013 additions and 146 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:8.2-apache
# Установка PostgreSQL драйвера
RUN apt-get update && apt-get install -y libpq-dev \
&& docker-php-ext-install pdo pdo_pgsql \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Включить модули Apache
RUN a2enmod rewrite headers alias
# Установка рабочей директории
WORKDIR /var/www/html