-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yml
73 lines (64 loc) · 1.79 KB
/
docker-compose.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
services:
nightly:
build:
context: ./nightly/fpm
args:
PHP_VERSION: nightly
IMAGE: alpine
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:nightly-fpm-alpine
7_4_X:
build:
context: ./7.4/fpm
args:
PHP_VERSION: 7.4.33
IMAGE: alpine
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_74:-7.4.33}-fpm-alpine
7_3_X:
build:
context: ./7.3/fpm
args:
PHP_VERSION: ${PHP_VERSION_73:-7.3.33}
IMAGE: php
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_73:-7.3.33}-fpm-alpine
7_2_X:
build:
context: ./7.2/fpm
args:
PHP_VERSION: ${PHP_VERSION_72:-7.2.34}
IMAGE: php
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_72:-7.2.34}-fpm-alpine
7_1_X:
build:
context: ./7.1/alpine
args:
PHP_VERSION: ${PHP_VERSION_71:-7.1.33}
IMAGE: php
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_71:-7.1.33}-fpm-alpine
7_0_X:
build:
context: ./7.0/alpine
args:
PHP_VERSION: ${PHP_VERSION_70:-7.0.33}
IMAGE: php
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_70:-7.0.33}-fpm-alpine
5_6_X:
build:
context: ./5.6/alpine
args:
PHP_VERSION: ${PHP_VERSION_56:-5.6.40}
IMAGE: php
ALPINE_URL: mirrors.aliyun.com
target: php
image: ${DOCKER_HUB_USERNAME:-khs1994}/php:${PHP_VERSION_56:-5.6.40}-fpm-alpine