initial commit

This commit is contained in:
Pau Capó 2023-11-19 19:23:43 +01:00
commit cedf3c0564
5 changed files with 16 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.idea/

3
php-7.4 Normal file
View file

@ -0,0 +1,3 @@
FROM php:7.4-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo pdo_mysql

4
php-8.0 Normal file
View file

@ -0,0 +1,4 @@
FROM php:8.0-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo pdo_mysql

4
php-8.1 Normal file
View file

@ -0,0 +1,4 @@
FROM php:8.1-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo pdo_mysql

4
php-8.2 Normal file
View file

@ -0,0 +1,4 @@
FROM php:8.2-apache
RUN a2enmod rewrite
RUN docker-php-ext-install pdo pdo_mysql