First changes for Docker

This commit is contained in:
Fabio Herzig
2026-07-25 21:51:43 +02:00
parent 6cb5386205
commit 99a5863f56
10 changed files with 122 additions and 321 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM php:8.3-apache
# Enable the rewrite module
RUN a2enmod rewrite
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
# The php:apache image handles the "start" command automatically,
# so we don't need to add anything else here.
+1
View File
@@ -0,0 +1 @@
include_path=".:/var/www/html:/usr/local/lib/php"