Dinesh Belwalkar | 0c328db | 2018-12-02 21:11:49 -0800 | [diff] [blame] | 1 | --- |
| 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 | |
| 16 | version: '2' |
| 17 | services: |
| 18 | adapter_openolt: |
| 19 | image: "${REGISTRY}${REPOSITORY}voltha-adapter-openolt${TAG}" |
| 20 | logging: |
| 21 | driver: "json-file" |
| 22 | options: |
| 23 | max-size: "10m" |
| 24 | max-file: "3" |
| 25 | command: [ |
| 26 | "/voltha/python/adapters/openolt/main.py", |
| 27 | "-v", |
| 28 | "--name=openolt", |
Arun Arora | 5f89fb6 | 2018-12-19 08:25:54 +0000 | [diff] [blame] | 29 | "--kafka_adapter=${DOCKER_HOST_IP}:9092", |
| 30 | "--kafka_cluster=${DOCKER_HOST_IP}:9092", |
Dinesh Belwalkar | 0c328db | 2018-12-02 21:11:49 -0800 | [diff] [blame] | 31 | "--core_topic=rwcore" |
| 32 | ] |
| 33 | networks: |
| 34 | - default |
| 35 | #Add brcm_openomci_onu here if needed |
| 36 | networks: |
| 37 | default: |
| 38 | driver: bridge |