forked from totara/totara-docker-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
62 lines (48 loc) · 928 Bytes
/
docker-compose-dev.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
version: "2"
services:
nginx:
build: ./nginx
mssql:
build: ./mssql
php-5.4:
build:
context: ./php/php54
args:
TIME_ZONE: ${TIME_ZONE}
php-5.4-debug:
build: ./php/php54-debug
php-5.5:
build:
context: ./php/php55
args:
TIME_ZONE: ${TIME_ZONE}
php-5.5-debug:
build: ./php/php55-debug
php-5.6:
build:
context: ./php/php56
args:
TIME_ZONE: ${TIME_ZONE}
php-5.6-debug:
build: ./php/php56-debug
php-7.0:
build:
context: ./php/php70
args:
TIME_ZONE: ${TIME_ZONE}
php-7.0-debug:
build: ./php/php70-debug
php-7.1:
build:
context: ./php/php71
args:
TIME_ZONE: ${TIME_ZONE}
php-7.1-debug:
build: ./php/php71-debug
php-7.2:
build:
context: ./php/php72
args:
TIME_ZONE: ${TIME_ZONE}
php-7.2-debug:
build: ./php/php72-debug