Add Docker Compose support und MySQL Datenbank Yipppeeeee

This commit is contained in:
2026-04-23 15:37:50 +02:00
parent cfa72be700
commit 3d3d15e8e5
7 changed files with 120 additions and 1 deletions
+1
View File
@@ -13,6 +13,7 @@ RUN ./node_modules/.bin/tailwindcss -i ./assets/css/app.css -o ./public/build/ap
FROM php:8.3-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo_mysql
COPY . /var/www/html
COPY --from=builder /app/public/build /var/www/html/public/build
RUN sed -i 's|/var/www/html|/var/www/html/public|g' \