blob: 99ffcd0975d10ea29af76030e611621af86e74b9 [file] [log] [blame]
Zsolt Harasztif2da1d02016-09-13 23:21:35 -07001version: '2'
2services:
3 #
khenb95fe9a2016-10-05 11:15:25 -07004 # Single-node zookeeper service
5 #
6 zookeeper:
David K. Bainbridge737b74f2018-01-22 12:57:52 -08007 image: "${REGISTRY}wurstmeister/zookeeper:latest"
khenb95fe9a2016-10-05 11:15:25 -07008 ports:
Khen Nursimuluda11dd72016-10-05 17:42:36 -07009 - 2181
khenb95fe9a2016-10-05 11:15:25 -070010 environment:
11 SERVICE_2181_NAME: "zookeeper"
12 #
13 # Single-node kafka service
14 #
15 kafka:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080016 image: "${REGISTRY}wurstmeister/kafka:latest"
khenb95fe9a2016-10-05 11:15:25 -070017 ports:
Khen Nursimuluda11dd72016-10-05 17:42:36 -070018 - 9092
khenb95fe9a2016-10-05 11:15:25 -070019 environment:
20 KAFKA_ADVERTISED_HOST_NAME: ${DOCKER_HOST_IP}
21 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
22 KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
Khen Nursimulu34e7ebb2016-11-10 13:38:44 -080023 KAFKA_HEAP_OPTS: "-Xmx256M -Xms128M"
khenb95fe9a2016-10-05 11:15:25 -070024 SERVICE_9092_NAME: "kafka"
25 depends_on:
26 - consul
27 volumes:
28 - /var/run/docker.sock:/var/run/docker.sock
29 #
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070030 # Single-node consul agent
31 #
32 consul:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080033 image: "${REGISTRY}consul:0.9.2"
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070034 command: agent -server -bootstrap -client 0.0.0.0 -ui
35 ports:
36 - "8300:8300"
37 - "8400:8400"
38 - "8500:8500"
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070039 - "8600:8600/udp"
Zsolt Haraszti3d552922016-09-14 22:26:34 -070040 environment:
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070041 #SERVICE_53_IGNORE: "yes"
Zsolt Haraszti3d552922016-09-14 22:26:34 -070042 SERVICE_8300_IGNORE: "yes"
43 SERVICE_8400_IGNORE: "yes"
44 SERVICE_8500_NAME: "consul-rest"
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070045 #
46 # Registrator
47 #
48 registrator:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080049 image: "${REGISTRY}gliderlabs/registrator:latest"
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070050 command: [
51 "-ip=${DOCKER_HOST_IP}",
52 "-retry-attempts", "100",
khenaidoo032d3302017-06-09 14:50:04 -040053 "-cleanup",
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070054 # "-internal",
schowdhury9d027c02017-06-06 23:14:33 -070055 "consul://consul:8500"
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070056 ]
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070057 links:
58 - consul
59 volumes:
60 - "/var/run/docker.sock:/tmp/docker.sock"
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080061
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070062 #
63 # Fluentd log server
64 #
65 fluentd:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080066 image: "${REGISTRY}${REPOSITORY}voltha-fluentd${TAG}"
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070067 ports:
68 - "24224:24224"
69 volumes:
70 - "/tmp/fluentd:/fluentd/log"
Zsolt Harasztie060a7d2016-09-16 11:08:24 -070071 environment:
72 SERVICE_24224_NAME: "fluentd-intake"
alshabib7941d402016-11-08 00:11:20 +010073
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070074 #
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080075 # Graphite-Grafana-statsd service instance
76 # (demo place-holder for external KPI system)
77 #
78 grafana:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080079 image: "${REGISTRY}${REPOSITORY}voltha-grafana${TAG}"
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080080 ports:
Sergio Slobodrian4f14a742017-08-23 21:53:10 -040081 - "8883:80"
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080082 - "2003:2003"
83 - "2004:2004"
84 - "8126:8126"
85 - "8125:8125/udp"
86 environment:
87 SERVICE_80_NAME: "grafana-web-ui"
88 SERVICE_2003_NAME: "carbon-plain-text-intake"
89 SERVICE_2004_NAME: "carbon-pickle-intake"
90 SERVICE_8126_NAME: "statsd-tcp-intake"
91 SERVICE_8125_NAME: "statsd-udp-intake"
Sergio Slobodrianba491582017-04-24 15:49:00 -040092 GR_SERVER_ROOT_URL: "http://localhost:80/grafana/"
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080093
94 #
95 # Shovel (Kafka-graphite-gateway)
96 #
97 shovel:
David K. Bainbridge737b74f2018-01-22 12:57:52 -080098 image: "${REGISTRY}${REPOSITORY}voltha-shovel${TAG}"
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -080099 command: [
100 "/shovel/shovel/main.py",
101 "--kafka=@kafka",
102 "--consul=${DOCKER_HOST_IP}:8500",
Zsolt Haraszti1b7c0362016-12-12 09:45:47 -0800103 "--topic=voltha.kpis",
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -0800104 "--host=${DOCKER_HOST_IP}"
105 ]
106 depends_on:
107 - consul
108 - kafka
109 - grafana
alshabibb634d902017-01-16 13:10:17 -0600110 restart: unless-stopped
Zsolt Harasztiaa4626e2016-12-08 16:53:06 -0800111
112 #
Zsolt Haraszti86be6f12016-09-27 09:56:49 -0700113 # Voltha server instance(s)
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700114 #
115 voltha:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800116 image: "${REGISTRY}${REPOSITORY}voltha-voltha${TAG}"
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700117 command: [
Zsolt Haraszti1edb8282016-11-08 10:57:19 -0800118 "/voltha/voltha/main.py",
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700119 "-v",
khenb95fe9a2016-10-05 11:15:25 -0700120 "--consul=${DOCKER_HOST_IP}:8500",
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700121 "--fluentd=fluentd:24224",
Zsolt Harasztie060a7d2016-09-16 11:08:24 -0700122 "--rest-port=8880",
Sergio Slobodrian4f14a742017-08-23 21:53:10 -0400123 "--grpc-port=50556",
khenb95fe9a2016-10-05 11:15:25 -0700124 "--kafka=@kafka",
Zsolt Harasztie060a7d2016-09-16 11:08:24 -0700125 "--instance-id-is-container-name",
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -0800126 "--interface=eth1",
khenaidoo032d3302017-06-09 14:50:04 -0400127 "--backend=consul",
Zsolt Harasztie060a7d2016-09-16 11:08:24 -0700128 "-v"
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700129 ]
130 ports:
131 - 8880
Sergio Slobodrian4f14a742017-08-23 21:53:10 -0400132 - 50556
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -0800133 - 18880
rshettye4bd2ed2017-07-19 16:38:11 +0530134 - "60001:60001"
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700135 depends_on:
136 - consul
137 links:
138 - consul
139 - fluentd
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700140 environment:
Zsolt Haraszti45363352016-09-27 10:32:18 -0700141 SERVICE_8880_NAME: "voltha-health"
Zsolt Haraszti3d552922016-09-14 22:26:34 -0700142 SERVICE_8880_CHECK_HTTP: "/health"
143 SERVICE_8880_CHECK_INTERVAL: "5s"
144 SERVICE_8880_CHECK_TIMEOUT: "1s"
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -0800145 SERVICE_18880_NAME: "voltha-sim-rest"
Rajeswara Rao8af144c2017-08-18 14:01:06 +0530146 SERVICE_HOST_IP: "${DOCKER_HOST_IP}"
Zsolt Harasztie060a7d2016-09-16 11:08:24 -0700147 volumes:
148 - "/var/run/docker.sock:/tmp/docker.sock"
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -0800149 networks:
150 - default
151 - ponmgmt
alshabib7941d402016-11-08 00:11:20 +0100152
Sergio Slobodrian4f14a742017-08-23 21:53:10 -0400153 envoy:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800154 image: "${REGISTRY}${REPOSITORY}voltha-envoy${TAG}"
Sergio Slobodrian4f14a742017-08-23 21:53:10 -0400155 entrypoint:
156 - /usr/local/bin/envoyd
157 - -envoy-cfg-template
158 - "/envoy/voltha-grpc-proxy.template.json"
159 - -envoy-config
160 - "/envoy/voltha-grpc-proxy.json"
161 ports:
162 - "50555:50555"
163 - "8882:8882"
164 - "8443:8443"
165 - "8001:8001"
166 environment:
167 SERVICE_50555_NAME: "voltha-grpc"
168 volumes:
169 - "/var/run/docker.sock:/tmp/docker.sock"
170 networks:
171 - default
172 - ponmgmt
173 links:
174 - voltha:vcore
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400175 #
176 # Voltha cli container
177 #
David K. Bainbridgebba65ff2018-01-19 09:26:09 -0800178 cli:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800179 image: "${REGISTRY}${REPOSITORY}voltha-cli${TAG}"
Richard Jankowski29dd1982017-06-28 13:30:18 -0400180 command: [
181 "/cli/cli/setup.sh",
khenaidoo108f05c2017-07-06 11:15:29 -0400182 "-L",
183 "-G"
Richard Jankowski29dd1982017-06-28 13:30:18 -0400184 ]
Sergio Slobodrianab11c642017-04-24 07:16:58 -0400185 environment:
186 DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
187 ports:
188 - "5022:22"
189 depends_on:
190 - voltha
191
alshabib7941d402016-11-08 00:11:20 +0100192#############################################
193# Item below this line will soon be removed.#
194#############################################
195
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700196 #
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400197 # ofagent server instance
198 #
199 ofagent:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800200 image: "${REGISTRY}${REPOSITORY}voltha-ofagent${TAG}"
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400201 command: [
Zsolt Haraszti1edb8282016-11-08 10:57:19 -0800202 "/ofagent/ofagent/main.py",
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400203 "-v",
204 "--consul=${DOCKER_HOST_IP}:8500",
205 "--fluentd=fluentd:24224",
Zsolt Harasztiee5c4c82017-01-09 14:37:57 -0800206 "--controller=${DOCKER_HOST_IP}:6653",
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400207 "--grpc-endpoint=@voltha-grpc",
208 "--instance-id-is-container-name",
Girishf6eeaea2017-11-13 10:53:57 +0530209 "--enable-tls",
210 "--key-file=/ofagent/pki/voltha.key",
211 "--cert-file=/ofagent/pki/voltha.crt",
Khen Nursimulu68b9be32016-10-25 11:57:04 -0400212 "-v"
213 ]
214 depends_on:
215 - consul
216 - voltha
217 links:
218 - consul
219 - fluentd
220 volumes:
221 - "/var/run/docker.sock:/tmp/docker.sock"
alshabib06b449c2017-01-15 17:33:16 -0600222 restart: unless-stopped
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500223
224 #
225 # Netconf server instance(s)
226 #
227 netconf:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800228 image: "${REGISTRY}${REPOSITORY}voltha-netconf${TAG}"
Khen Nursimulub4e71472017-01-06 18:05:47 -0500229 privileged: true
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500230 command: [
231 "/netconf/netconf/main.py",
232 "-v",
233 "--consul=${DOCKER_HOST_IP}:8500",
234 "--fluentd=fluentd:24224",
235 "--grpc-endpoint=@voltha-grpc",
236 "--instance-id-is-container-name",
237 "-v"
238 ]
239 ports:
Khen Nursimulub4e71472017-01-06 18:05:47 -0500240 - "830:1830"
Khen Nursimuluaaac7ee2016-12-11 22:03:52 -0500241 depends_on:
242 - consul
243 - voltha
244 links:
245 - consul
246 - fluentd
247 environment:
248 SERVICE_1830_NAME: "netconf-server"
249 volumes:
250 - "/var/run/docker.sock:/tmp/docker.sock"
251
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400252 #
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400253 # Dashboard daemon
254 #
255 dashd:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800256 image: "${REGISTRY}${REPOSITORY}voltha-dashd${TAG}"
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400257 command: [
258 "/dashd/dashd/main.py",
259 "--kafka=@kafka",
260 "--consul=${DOCKER_HOST_IP}:8500",
Sergio Slobodrian4f14a742017-08-23 21:53:10 -0400261 "--grafana_url=http://admin:admin@${DOCKER_HOST_IP}:8883/api",
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400262 "--topic=voltha.kpis",
263 "--docker_host=${DOCKER_HOST_IP}"
264 ]
265 depends_on:
266 - consul
267 - kafka
268 - grafana
269 restart: unless-stopped
270
271 #
272 # Nginx service consolidation
273 #
274 nginx:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800275 image: "${REGISTRY}${REPOSITORY}voltha-nginx${TAG}"
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400276 ports:
277 - "80:80"
278 environment:
279 CONSUL_ADDR: "${DOCKER_HOST_IP}:8500"
280 command: [
281 "/nginx_config/start_service.sh"
282 ]
283 depends_on:
284 - consul
285 - grafana
Sergio Slobodriand9ec6002017-04-25 08:09:11 -0400286 - portainer
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400287 restart: unless-stopped
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -0400288
289 #
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400290 # Docker ui
291 #
292 portainer:
David K. Bainbridge737b74f2018-01-22 12:57:52 -0800293 image: "${REGISTRY}${REPOSITORY}voltha-portainer${TAG}"
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400294 ports:
295 - "9000:9000"
296 environment:
297 CONSUL_ADDR: "${DOCKER_HOST_IP}:8500"
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400298 restart: unless-stopped
Sergio Slobodriand9ec6002017-04-25 08:09:11 -0400299 entrypoint: ["/portainer", "--logo", "/docker/images/logo_alt.png"]
Sergio Slobodrian4d307102017-04-24 10:19:00 -0400300 volumes:
301 - "/var/run/docker.sock:/var/run/docker.sock"
302
Zsolt Haraszti9b485fb2016-12-26 23:11:15 -0800303networks:
304 default:
305 driver: bridge
306 ponmgmt:
307 driver: bridge
308 driver_opts:
309 com.docker.network.bridge.name: "ponmgmt"