forked from php-imagine/Imagine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 943 Bytes
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 943 Bytes
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
44
45
46
47
48
49
50
51
52
53
services:
php83-imagick:
build:
context: .
args:
PHP_VERSION: "8.3"
IMAGE_DRIVER: "imagick"
volumes:
- .:/app
working_dir: /app
php83-gmagick:
build:
context: .
args:
PHP_VERSION: "8.3"
IMAGE_DRIVER: "gmagick"
volumes:
- .:/app
working_dir: /app
php84-imagick:
build:
context: .
args:
PHP_VERSION: "8.4"
IMAGE_DRIVER: "imagick"
volumes:
- .:/app
working_dir: /app
php84-gmagick:
build:
context: .
args:
PHP_VERSION: "8.4"
IMAGE_DRIVER: "gmagick"
volumes:
- .:/app
working_dir: /app
php85-imagick:
build:
context: .
args:
PHP_VERSION: "8.5"
IMAGE_DRIVER: "imagick"
volumes:
- .:/app
working_dir: /app
# Note: Gmagick 2.0.6RC1 does not compile on PHP 8.5
# php85-gmagick is intentionally omitted