forked from andreskrey/readability.php
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 798 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (38 loc) · 798 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
services:
php-8.1-libxml-2.9.13: &template
build:
context: ./docker/php
args:
LIBXML_VERSION: 2.9.13
PHP_VERSION: 8.1
volumes:
- ./:/app
tty: true
php-8.1-libxml-2.9.14:
<<: *template
build:
context: ./docker/php
args:
LIBXML_VERSION: 2.9.14
PHP_VERSION: 8.1
php-8.2-libxml-2.9.14:
<<: *template
build:
context: ./docker/php
args:
LIBXML_VERSION: 2.9.14
PHP_VERSION: 8.2
php-8.3-libxml-2.9.14:
<<: *template
build:
context: ./docker/php
args:
LIBXML_VERSION: 2.9.14
PHP_VERSION: 8.3
php-8.4-libxml-2.9.14:
<<: *template
build:
context: ./docker/php
args:
LIBXML_VERSION: 2.9.14
PHP_VERSION: 8.4