commit cedf3c05640ce41aae5486b49422dcc8e890c704 Author: Pau Capó Date: Sun Nov 19 19:23:43 2023 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62c8935 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/ \ No newline at end of file diff --git a/php-7.4 b/php-7.4 new file mode 100644 index 0000000..f523aa7 --- /dev/null +++ b/php-7.4 @@ -0,0 +1,3 @@ +FROM php:7.4-apache +RUN a2enmod rewrite +RUN docker-php-ext-install pdo pdo_mysql diff --git a/php-8.0 b/php-8.0 new file mode 100644 index 0000000..a30a238 --- /dev/null +++ b/php-8.0 @@ -0,0 +1,4 @@ +FROM php:8.0-apache +RUN a2enmod rewrite +RUN docker-php-ext-install pdo pdo_mysql + diff --git a/php-8.1 b/php-8.1 new file mode 100644 index 0000000..a984519 --- /dev/null +++ b/php-8.1 @@ -0,0 +1,4 @@ +FROM php:8.1-apache +RUN a2enmod rewrite +RUN docker-php-ext-install pdo pdo_mysql + diff --git a/php-8.2 b/php-8.2 new file mode 100644 index 0000000..bcb0182 --- /dev/null +++ b/php-8.2 @@ -0,0 +1,4 @@ +FROM php:8.2-apache +RUN a2enmod rewrite +RUN docker-php-ext-install pdo pdo_mysql +