blob: 6ccf4cb43ba560c7b58cd0082e9f6436d7aee7ad [file] [log] [blame]
schowdhury33763f42017-06-09 02:05:42 -07001version: '2'
2services:
3 #
4 # Single-node zookeeper service
5 #
6 zookeeper:
7 image: wurstmeister/zookeeper
8 ports:
9 - 2181
10 environment:
11 SERVICE_2181_NAME: "zookeeper"
12 #
13 # Single-node kafka service
14 #
15 kafka:
16 image: wurstmeister/kafka
17 ports:
18 - 9092
19 environment:
20 KAFKA_ADVERTISED_HOST_NAME: ${DOCKER_HOST_IP}
21 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
22 KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
23 KAFKA_HEAP_OPTS: "-Xmx256M -Xms128M"
24 SERVICE_9092_NAME: "kafka"
25 depends_on:
26 - consul
27 volumes:
28 - /var/run/docker.sock:/var/run/docker.sock
29 #
30 # Single-node consul agent
31 #
32 consul:
33 image: consul:latest
34 command: agent -server -bootstrap -client 0.0.0.0 -ui
35 ports:
36 - "8300:8300"
37 - "8400:8400"
38 - "8500:8500"
39 - "8600:8600/udp"
40 environment:
41 #SERVICE_53_IGNORE: "yes"
42 SERVICE_8300_IGNORE: "yes"
43 SERVICE_8400_IGNORE: "yes"
44 SERVICE_8500_NAME: "consul-rest"
45 volumes:
46 - "/cord/incubator/voltha/consul_config:/consul/config"
47 #
48 # Registrator
49 #
50 registrator:
51 image: gliderlabs/registrator:latest
52 command: [
53 "-ip=${DOCKER_HOST_IP}",
54 "-retry-attempts", "100",
55 # "-internal",
56 "consul://consul:8500"
57 ]
58 links:
59 - consul
60 volumes:
61 - "/var/run/docker.sock:/tmp/docker.sock"
62 - "/cord/incubator/voltha/reg_config:/reg/config"
63 environment:
64 CONSUL_CACERT: "/reg/config/voltha-CA-template.pem"
65 CONSUL_TLSCERT: "/reg/config/voltha-cert-template.crt"
66 CONSUL_TLSKEY: "/reg/config/voltha-pvt-template.key"
67
68 #
69 # Fluentd log server
70 #
71 fluentd:
72 image: fluent/fluentd
73 ports:
74 - "24224:24224"
75 volumes:
76 - "/tmp/fluentd:/fluentd/log"
77 environment:
78 SERVICE_24224_NAME: "fluentd-intake"
79
80 #
81 # Graphite-Grafana-statsd service instance
82 # (demo place-holder for external KPI system)
83 #
84 grafana:
85 image: voltha/grafana
86 ports:
87 - "8882:80"
88 - "2003:2003"
89 - "2004:2004"
90 - "8126:8126"
91 - "8125:8125/udp"
92 environment:
93 SERVICE_80_NAME: "grafana-web-ui"
94 SERVICE_2003_NAME: "carbon-plain-text-intake"
95 SERVICE_2004_NAME: "carbon-pickle-intake"
96 SERVICE_8126_NAME: "statsd-tcp-intake"
97 SERVICE_8125_NAME: "statsd-udp-intake"
98 GR_SERVER_ROOT_URL: "http://localhost:80/grafana/"
99
100 #
101 # Shovel (Kafka-graphite-gateway)
102 #
103 shovel:
104 image: cord/shovel
105 command: [
106 "/shovel/shovel/main.py",
107 "--kafka=@kafka",
108 "--consul=${DOCKER_HOST_IP}:8500",
109 "--topic=voltha.kpis",
110 "--host=${DOCKER_HOST_IP}"
111 ]
112 depends_on:
113 - consul
114 - kafka
115 - grafana
116 restart: unless-stopped
117
118 #
119 # Voltha server instance(s)
120 #
121 voltha:
122 image: cord/voltha
123 command: [
124 "/voltha/voltha/main.py",
125 "-v",
126 "--consul=${DOCKER_HOST_IP}:8500",
127 "--fluentd=fluentd:24224",
128 "--rest-port=8880",
129 "--grpc-port=50555",
130 "--kafka=@kafka",
131 "--instance-id-is-container-name",
132 "--interface=eth1",
133 "-v"
134 ]
135 ports:
136 - 8880
137 - 50555
138 - 18880
139 depends_on:
140 - consul
141 links:
142 - consul
143 - fluentd
144 environment:
145 SERVICE_8880_NAME: "voltha-health"
146 SERVICE_8880_CHECK_HTTP: "/health"
147 SERVICE_8880_CHECK_INTERVAL: "5s"
148 SERVICE_8880_CHECK_TIMEOUT: "1s"
149 SERVICE_50555_NAME: "voltha-grpc"
150 SERVICE_18880_NAME: "voltha-sim-rest"
151 volumes:
152 - "/var/run/docker.sock:/tmp/docker.sock"
153 networks:
154 - default
155 - ponmgmt
156
157 #
158 # Voltha cli container
159 #
160 vcli:
161 image: cord/vcli
162 environment:
163 DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
164 ports:
165 - "5022:22"
166 depends_on:
167 - voltha
168
169#############################################
170# Item below this line will soon be removed.#
171#############################################
172
173 #
174 # Chameleon server instance(s)
175 #
176 chameleon:
177 image: cord/chameleon
178 command: [
179 "/chameleon/chameleon/main.py",
180 "-v",
181 "--consul=consul:8500",
182 "--fluentd=fluentd:24224",
183 "--rest-port=8881",
184 "--grpc-endpoint=@voltha-grpc",
185 "--instance-id-is-container-name",
186 "-v"
187 ]
188 ports:
189 - 8881
190 depends_on:
191 - consul
192 - voltha
193 links:
194 - consul
195 - fluentd
196 environment:
197 SERVICE_8881_NAME: "chameleon-rest"
198 volumes:
199 - "/var/run/docker.sock:/tmp/docker.sock"
200 #
201 # ofagent server instance
202 #
203 ofagent:
204 image: cord/ofagent
205 command: [
206 "/ofagent/ofagent/main.py",
207 "-v",
208 "--consul=${DOCKER_HOST_IP}:8500",
209 "--fluentd=fluentd:24224",
210 "--controller=${DOCKER_HOST_IP}:6653",
211 "--grpc-endpoint=@voltha-grpc",
212 "--instance-id-is-container-name",
213 "-v"
214 ]
215 depends_on:
216 - consul
217 - voltha
218 links:
219 - consul
220 - fluentd
221 volumes:
222 - "/var/run/docker.sock:/tmp/docker.sock"
223 restart: unless-stopped
224
225 #
226 # Netconf server instance(s)
227 #
228 netconf:
229 image: cord/netconf
230 privileged: true
231 command: [
232 "/netconf/netconf/main.py",
233 "-v",
234 "--consul=${DOCKER_HOST_IP}:8500",
235 "--fluentd=fluentd:24224",
236 "--grpc-endpoint=@voltha-grpc",
237 "--instance-id-is-container-name",
238 "-v"
239 ]
240 ports:
241 - "830:1830"
242 depends_on:
243 - consul
244 - voltha
245 links:
246 - consul
247 - fluentd
248 environment:
249 SERVICE_1830_NAME: "netconf-server"
250 volumes:
251 - "/var/run/docker.sock:/tmp/docker.sock"
252
253 #
254 # Dashboard daemon
255 #
256 dashd:
257 image: cord/dashd
258 command: [
259 "/dashd/dashd/main.py",
260 "--kafka=@kafka",
261 "--consul=${DOCKER_HOST_IP}:8500",
262 "--grafana_url=http://admin:admin@${DOCKER_HOST_IP}:8882/api",
263 "--topic=voltha.kpis",
264 "--docker_host=${DOCKER_HOST_IP}"
265 ]
266 depends_on:
267 - consul
268 - kafka
269 - grafana
270 restart: unless-stopped
271
272 #
273 # Nginx service consolidation
274 #
275 nginx:
276 image: voltha/nginx
277 ports:
278 - "80:80"
279 environment:
280 CONSUL_ADDR: "${DOCKER_HOST_IP}:8500"
281 command: [
282 "/nginx_config/start_service.sh"
283 ]
284 depends_on:
285 - consul
286 - grafana
287 - chameleon
288 - portainer
289 restart: unless-stopped
290 volumes:
291 - "/cord/incubator/voltha/nginx_config:/nginx_config"
292
293 #
294 # Docker ui
295 #
296 portainer:
297 image: voltha/portainer
298 ports:
299 - "9000:9000"
300 environment:
301 CONSUL_ADDR: "${DOCKER_HOST_IP}:8500"
302 restart: unless-stopped
303 entrypoint: ["/portainer", "--logo", "/docker/images/logo_alt.png"]
304 volumes:
305 - "/var/run/docker.sock:/var/run/docker.sock"
306
307networks:
308 default:
309 driver: bridge
310 ponmgmt:
311 driver: bridge
312 driver_opts:
313 com.docker.network.bridge.name: "ponmgmt"