-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
43 lines (40 loc) · 1.27 KB
/
compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
services:
php_81:
image: lephare/php:8.1
build:
args: &build-args
PHP_VERSION: "8.1"
PHP_EXTENSIONS: "@composer apcu exif gd imagick intl memcached opcache pdo_mysql pdo_pgsql pgsql soap xdebug zip"
PHP_TIMEZONE: "Europe/Paris"
x-bake: &build-x-bake
platforms:
- linux/amd64
- linux/arm64
php_82:
image: lephare/php:8.2
build:
args:
<<: *build-args
PHP_VERSION: "8.2"
x-bake: *build-x-bake
php_83:
image: lephare/php:8.3
build:
args:
<<: *build-args
PHP_VERSION: "8.3"
PHP_EXTENSIONS: "@composer apcu exif gd intl memcached opcache pdo_mysql pdo_pgsql pgsql soap xdebug zip" # Disable Imagick for PHP 8.3 until https://github.com/Imagick/imagick/issues/640 is fixed
x-bake: *build-x-bake
php_84:
image: lephare/php:8.4
build:
args:
<<: *build-args
PHP_VERSION: "8.4"
PHP_EXTENSIONS: "@composer apcu exif gd intl memcached opcache pdo_mysql pdo_pgsql pgsql soap xdebug zip" # Disable Imagick until https://github.com/Imagick/imagick/issues/640 is fixed
PHP_TIMEZONE: "UTC"
x-bake: *build-x-bake
tags:
- lephare/php:8.4
- lephare/php:8
- lephare/php:latest