-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
102 lines (102 loc) · 1.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
dnsmasq:
image: rsoares/dnsmasq
ports:
- "172.17.42.1:53:53/udp"
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: dnsmasq
jonpostgres:
image: rsoares/jon-postgres
environment:
- POSTGRESQL_USER=rhqadmin
- POSTGRESQL_PASSWORD=rhqadmin
- POSTGRESQL_DATABASE=rhq
- POSTGRESQL_ADMIN_PASSWORD=postgres@123
- POSTGRESQL_SHARED_BUFFERS=80
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: jon-postgres
links:
- dnsmasq
dns:
- 172.17.42.1
jonserver:
image: rsoares/jon-server
ports:
- "7080:7080"
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: jon-server
links:
- jonpostgres
dns:
- 172.17.42.1
ewshttpd:
image: rsoares/ews
ports:
- "80:80"
- "6666:6666"
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: apache
dns:
- 172.17.42.1
eapmaster:
image: rsoares/eap
ports:
- "9990:9990"
- "9999:9999"
command: domain --host-config=host-master.xml --master-address=localhost
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: master
links:
- dnsmasq
dns:
- 172.17.42.1
eapslave1:
image: rsoares/eap
command: domain --host-config=host-slave.xml --master-address=master
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: eap-slave1
links:
- dnsmasq
dns:
- 172.17.42.1
eapslave2:
image: rsoares/eap
command: domain --host-config=host-slave.xml --master-address=master
volumes_from:
- dnsmasq
volumes:
- /etc/timezone:/etc/timezone:ro
- /tmp/share:/tmp/share
privileged: true
hostname: eap-slave2
links:
- dnsmasq
dns:
- 172.17.42.1