added php 8.3
This commit is contained in:
parent
0e44205407
commit
03dbebd0b8
20
8.0.2/Dockerfile
Normal file
20
8.0.2/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
FROM php:8.0.2-fpm-buster
|
||||||
|
|
||||||
|
# Set build shell to bash, default has has some issues sometimes
|
||||||
|
SHELL ["/bin/bash", "-c"]
|
||||||
|
|
||||||
|
# Install basic tools
|
||||||
|
## libzip-dev is required for php-zip
|
||||||
|
## libfreetype6-dev libjpeg62-turbo-dev are required for php-gd
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install curl nano iputils-ping libzip-dev zip unzip libfreetype6-dev libjpeg62-turbo-dev -y --no-install-recommends \
|
||||||
|
&& apt auto-remove -y \
|
||||||
|
&& apt clean -y
|
||||||
|
|
||||||
|
## Install composer and some base extensions
|
||||||
|
# Configure and Install mysqli,pdo,pdo_mysql,bcmath,calendar,zip,gettext,exif,pcntl,shmop,-j$(nproc),gd,sysvmsg
|
||||||
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
|
||||||
|
&& docker-php-ext-install {mysqli,pdo,pdo_mysql,bcmath,calendar,zip,gettext,exif,pcntl,shmop,-j$(nproc),gd,sysvmsg,sysvsem,sysvshm}
|
||||||
|
|
||||||
|
# Copy php.ini config
|
||||||
|
COPY php.ini /usr/local/etc/php/php.ini
|
17
8.0.2/docker-compose.yml
Normal file
17
8.0.2/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
version: '3.5'
|
||||||
|
services:
|
||||||
|
#########################
|
||||||
|
fpm:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
x-bake:
|
||||||
|
pull: true
|
||||||
|
platforms:
|
||||||
|
- linux/amd64/v1
|
||||||
|
- linux/amd64/v2
|
||||||
|
- linux/amd64/v3
|
||||||
|
- linux/arm/v7
|
||||||
|
- linux/arm64
|
||||||
|
hostname: fpm
|
||||||
|
image: git.shihaam.dev/dockerfiles/php-fpm:8.0.2
|
1963
8.0.2/php.ini
Normal file
1963
8.0.2/php.ini
Normal file
File diff suppressed because it is too large
Load Diff
20
8.1/Dockerfile
Normal file
20
8.1/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
FROM php:8.1-fpm-bullseye
|
||||||
|
|
||||||
|
# Set build shell to bash, default has has some issues sometimes
|
||||||
|
SHELL ["/bin/bash", "-c"]
|
||||||
|
|
||||||
|
# Install basic tools
|
||||||
|
## libzip-dev is required for php-zip
|
||||||
|
## libfreetype6-dev libjpeg62-turbo-dev are required for php-gd
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install curl nano iputils-ping libzip-dev zip unzip libfreetype6-dev libjpeg62-turbo-dev -y --no-install-recommends \
|
||||||
|
&& apt auto-remove -y \
|
||||||
|
&& apt clean -y
|
||||||
|
|
||||||
|
## Install composer and some base extensions
|
||||||
|
# Configure and Install mysqli,pdo,pdo_mysql,bcmath,calendar,zip,gettext,exif,pcntl,shmop,-j$(nproc),gd,sysvmsg
|
||||||
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
|
||||||
|
&& docker-php-ext-install {mysqli,pdo,pdo_mysql,bcmath,calendar,zip,gettext,exif,pcntl,shmop,-j$(nproc),gd,sysvmsg,sysvsem,sysvshm}
|
||||||
|
|
||||||
|
# Copy php.ini config
|
||||||
|
COPY php.ini /usr/local/etc/php/php.ini
|
17
8.1/docker-compose.yml
Normal file
17
8.1/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
version: '3.5'
|
||||||
|
services:
|
||||||
|
#########################
|
||||||
|
fpm:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
x-bake:
|
||||||
|
pull: true
|
||||||
|
platforms:
|
||||||
|
- linux/amd64/v1
|
||||||
|
- linux/amd64/v2
|
||||||
|
- linux/amd64/v3
|
||||||
|
- linux/arm/v7
|
||||||
|
- linux/arm64
|
||||||
|
hostname: fpm
|
||||||
|
image: git.shihaam.dev/dockerfiles/php-fpm:8.1
|
1963
8.1/php.ini
Normal file
1963
8.1/php.ini
Normal file
File diff suppressed because it is too large
Load Diff
15
8.3/Dockerfile
Normal file
15
8.3/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM php:8.3-fpm-bullseye
|
||||||
|
|
||||||
|
# Set build shell to bash, default has has some issues sometimes
|
||||||
|
SHELL ["/bin/bash", "-c"]
|
||||||
|
|
||||||
|
# Install basic tools
|
||||||
|
## libzip-dev is required for php-zip
|
||||||
|
## libfreetype6-dev libjpeg62-turbo-dev are required for php-gd
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install curl nano iputils-ping libzip-dev zip unzip libfreetype6-dev libjpeg62-turbo-dev -y --no-install-recommends \
|
||||||
|
&& apt auto-remove -y \
|
||||||
|
&& apt clean -y
|
||||||
|
|
||||||
|
# Copy php.ini config
|
||||||
|
COPY php.ini /usr/local/etc/php/php.ini
|
15
8.3/docker-compose.yml
Normal file
15
8.3/docker-compose.yml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
services:
|
||||||
|
fpm:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
x-bake:
|
||||||
|
pull: true
|
||||||
|
platforms:
|
||||||
|
- linux/amd64/v1
|
||||||
|
- linux/amd64/v2
|
||||||
|
- linux/amd64/v3
|
||||||
|
- linux/arm/v7
|
||||||
|
- linux/arm64
|
||||||
|
hostname: fpm
|
||||||
|
image: git.shihaam.dev/dockerfiles/php-fpm:8.3
|
1963
8.3/php.ini
Normal file
1963
8.3/php.ini
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user