-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
73 lines (66 loc) · 1.49 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
version: '2'
services:
zabbix-1.8:
image: cavaliercoder/zabbix:1.8
build:
dockerfile: zabbix-1.8.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8018:80"
zabbix-2.0:
image: cavaliercoder/zabbix:2.0
build:
dockerfile: zabbix-2.0.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8020:80"
zabbix-2.2:
image: cavaliercoder/zabbix:2.2
build:
dockerfile: zabbix-2.2.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8022:80"
zabbix-2.4:
image: cavaliercoder/zabbix:2.4
build:
dockerfile: zabbix-2.4.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8024:80"
zabbix-3.0:
image: cavaliercoder/zabbix:3.0
build:
dockerfile: zabbix-3.0.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8030:80"
zabbix-3.2:
image: cavaliercoder/zabbix:3.2
build:
dockerfile: zabbix-3.2.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8032:80"
zabbix-3.4:
image: cavaliercoder/zabbix:3.4
build:
dockerfile: zabbix-3.4.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8034:80"
zabbix-4.0:
image: cavaliercoder/zabbix:4.0
build:
dockerfile: zabbix-4.0.Dockerfile
context: .
args: [ http_proxy, https_proxy ]
ports:
- "8040:80"