blob: bac3c35c9e78fefa1aa0308703eb2316bd0053f6 [file] [log] [blame]
William Kurkian5891dbe2019-06-03 12:31:45 -04001---
2# Copyright 2018 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16version: '2'
17
18networks:
19 default:
20 driver: bridge
21
22services:
23
24 zookeeper:
25 image: "wurstmeister/zookeeper:latest"
26 environment:
27 SERVICE_2181_NAME: "zookeeper"
28 ports:
29 - 2181:2181
30 networks:
31 - default
32 restart: unless-stopped
33
34
35 kafka:
36 image: "wurstmeister/kafka:2.11-2.0.1"
37 environment:
38 KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://${DOCKER_HOST_IP}:9092
39 KAFKA_LISTENERS: PLAINTEXT://:9092
40 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
41 KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
42 SERVICE_9092_NAME: "kafka"
43 volumes:
44 - /var/run/docker.sock:/var/run/docker.sock
45 ports:
46 - 9092:9092
47 networks:
48 - default
49 restart: unless-stopped
50
51
52 etcd:
53 image: "quay.io/coreos/etcd:v3.2.9"
54 command: [
55 "etcd",
56 "--name=etcd0",
57 "--advertise-client-urls=http://${DOCKER_HOST_IP}:2379,http://${DOCKER_HOST_IP}:4001",
58 "--listen-client-urls=http://0.0.0.0:2379,http://0.0.0.0:4001",
59 "--initial-advertise-peer-urls=http://${DOCKER_HOST_IP}:2380",
60 "--listen-peer-urls=http://0.0.0.0:2380",
61 "--initial-cluster-token=etcd-cluster-1",
62 "--initial-cluster=etcd0=http://${DOCKER_HOST_IP}:2380",
63 "--initial-cluster-state=new"
64 ]
65 ports:
66 - "2379:2379"
67 - 2380
68 - 4001
69 networks:
70 - default
71 restart: unless-stopped
72
73
74 rw_core:
75 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-rw-core:${DOCKER_TAG}"
76 entrypoint:
77 - /app/rw_core
78 - -kv_store_type=etcd
79 - -kv_store_host=${DOCKER_HOST_IP}
80 - -kv_store_port=2379
81 - -grpc_port=50057
82 - -banner=true
83 - -kafka_adapter_host=${DOCKER_HOST_IP}
84 - -kafka_adapter_port=9092
85 - -kafka_cluster_host=${DOCKER_HOST_IP}
86 - -kafka_cluster_port=9092
87 - -rw_core_topic=rwcore
88 - -kv_store_data_prefix=service/voltha
89 - -in_competing_mode=false
90 - -log_level=0
91 volumes:
92 - "/var/run/docker.sock:/tmp/docker.sock"
93 ports:
94 - 50057:50057
95 networks:
96 - default
97 restart: unless-stopped
98
99
100 cli:
101 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-cli:${DOCKER_TAG}"
102 logging:
103 driver: "json-file"
104 options:
105 max-size: "10m"
106 max-file: "3"
107 environment:
108 DOCKER_HOST_IP: "${DOCKER_HOST_IP}"
109 entrypoint:
110 - /voltha/python/cli/setup.sh
111 - -g ${DOCKER_HOST_IP}:50057
112 networks:
113 - default
114 ports:
115 - "5022:22"
116 restart: unless-stopped
117
118
119 ofagent:
120 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-ofagent:${DOCKER_TAG}"
121 logging:
122 driver: "json-file"
123 options:
124 max-size: "10m"
125 max-file: "3"
126 command: [
127 "/ofagent/ofagent/main.py",
128 "--consul=${DOCKER_HOST_IP}:8500",
129 "--controller=${DOCKER_HOST_IP}:6653",
130 "--grpc-endpoint=${DOCKER_HOST_IP}:50057",
131 "--instance-id-is-container-name",
132 "-v"
133 ]
134 volumes:
135 - "/var/run/docker.sock:/tmp/docker.sock"
136 networks:
137 - default
138 restart: unless-stopped
139
140
141 onos:
142 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha/voltha-onos:2.0.0"
143 ports:
144 - "8101:8101" # ssh
145 - "6653:6653" # OF
146 - "8181:8181" # UI
147 environment:
148 ONOS_APPS: 'drivers,openflow-base'
149 volumes:
150 - "/var/run/docker.sock:/tmp/docker.sock"
151 - "./network-cfg.json:/root/onos/config/network-cfg.json"
152 networks:
153 - default
154 restart: unless-stopped
155
156
157 adapter_openolt:
158 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-openolt-adapter:${DOCKER_TAG}-go"
159 logging:
160 driver: "json-file"
161 options:
162 max-size: "10m"
163 max-file: "3"
164 command: [
165 "/app/openolt",
166 "--kafka_adapter_host=${DOCKER_HOST_IP}",
167 "--kafka_adapter_port=9092",
168 "--kafka_cluster_host=${DOCKER_HOST_IP}",
169 "--kafka_cluster_port=9092",
170 "--core_topic=rwcore",
171 "--kv_store_host=${DOCKER_HOST_IP}",
172 "--kv_store_port=2379"
173 ]
174 ports:
175 - "50062:50062"
176 networks:
177 - default
178 restart: unless-stopped
179
180
181 adapter_openonu:
182 image: "${DOCKER_REGISTRY}${DOCKER_REPOSITORY}voltha-openonu-adapter:${DOCKER_TAG}"
183 logging:
184 driver: "json-file"
185 options:
186 max-size: "10m"
187 max-file: "3"
188 command: [
189 "/voltha/adapters/brcm_openomci_onu/main.py",
190 "-v",
191 "--name=brcm_openomci_onu",
192 "--kafka_adapter=${DOCKER_HOST_IP}:9092",
193 "--kafka_cluster=${DOCKER_HOST_IP}:9092",
194 "--backend=etcd",
195 "--etcd=${DOCKER_HOST_IP}:2379",
196 "--core_topic=rwcore"
197 ]
198 networks:
199 - default
200 restart: unless-stopped