Initial commit: Add Docker setup, database schema, and basic PHP application structure

This commit is contained in:
Troy Grunt
2026-02-01 17:14:55 +01:00
parent 52dc3b4536
commit 21e2eebe48
6 changed files with 129 additions and 0 deletions

12
apache/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM php:8.2-apache
# Apache Rewrite aktivieren
RUN a2enmod rewrite
# PHP-Extensions für MariaDB
RUN docker-php-ext-install pdo pdo_mysql
# VHost kopieren
COPY vhost.conf /etc/apache2/sites-available/000-default.conf
WORKDIR /var/www/html