This commit is contained in:
kirill.khorkov
2025-12-17 01:24:01 +03:00
parent fe288b3caf
commit f4f57bd153
18 changed files with 4 additions and 115 deletions

View File

@@ -1,13 +1,10 @@
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