This commit is contained in:
Joey Kimsey
2024-12-02 19:05:04 -05:00
parent bf7b7ba1c9
commit 6f0b75cfd0
17 changed files with 888 additions and 108 deletions

11
docker/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM nginx:latest as nginx
FROM php:8-fpm as php-fpm
RUN apt-get update -y
RUN apt-get install -y libmariadb-dev
RUN docker-php-ext-install mysqli pdo pdo_mysql
FROM php:8-apache as apache
RUN a2enmod ssl && a2enmod rewrite
RUN docker-php-ext-install mysqli pdo pdo_mysql
WORKDIR /var/www/html