forked from xwp/stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.build.yml
48 lines (41 loc) · 1.03 KB
/
docker-compose.build.yml
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
version: '3'
services:
wordpress_latest:
image: xwpco/stream-wordpress:latest
build:
context: ./local/docker/wordpress
wordpress_php5.6:
image: xwpco/stream-wordpress:php5.6
build:
context: ./local/docker/wordpress
args:
PHP_VERSION: "5.6"
XDEBUG_VERSION: "2.5.5"
wordpress_php7.4:
image: xwpco/stream-wordpress:php7.4
build:
context: ./local/docker/wordpress
args:
PHP_VERSION: "7.4"
XDEBUG_VERSION: "2.9.6"
wordpress_php8.0:
image: xwpco/stream-wordpress:php8.0
build:
context: ./local/docker/wordpress
args:
PHP_VERSION: "8.0"
XDEBUG_VERSION: "3.2.1"
wordpress_php8.1:
image: xwpco/stream-wordpress:php8.1
build:
context: ./local/docker/wordpress
args:
PHP_VERSION: "8.1"
XDEBUG_VERSION: "3.2.1"
wordpress_php8.2:
image: xwpco/stream-wordpress:php8.2
build:
context: ./local/docker/wordpress
args:
PHP_VERSION: "8.2"
XDEBUG_VERSION: "3.2.1"