khenaidoo | d2b6df9 | 2018-12-13 16:37:20 -0500 | [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_simulated_olt: |
| 19 | image: "${REGISTRY}${REPOSITORY}voltha-adapter-simulated-olt${TAG}" |
| 20 | logging: |
| 21 | driver: "json-file" |
| 22 | options: |
| 23 | max-size: "10m" |
| 24 | max-file: "3" |
| 25 | command: [ |
| 26 | "/app/simulated_olt", |
| 27 | "--kafka_adapter_host=${DOCKER_HOST_IP}", |
| 28 | "--kafka_adapter_port=9092", |
| 29 | "--kafka_cluster_host=${DOCKER_HOST_IP}", |
| 30 | "--kafka_cluster_port=9092", |
| 31 | "--core_topic=rwcore", |
| 32 | "--simulator_topic=simulated_olt", |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 33 | "--kv_store_host=${DOCKER_HOST_IP}", |
| 34 | "--kv_store_port=2379", |
khenaidoo | d2b6df9 | 2018-12-13 16:37:20 -0500 | [diff] [blame] | 35 | "--onu_number=1" |
| 36 | ] |
| 37 | networks: |
| 38 | - default |
| 39 | |
| 40 | adapter_simulated_onu: |
| 41 | image: "${REGISTRY}${REPOSITORY}voltha-adapter-simulated-onu${TAG}" |
| 42 | logging: |
| 43 | driver: "json-file" |
| 44 | options: |
| 45 | max-size: "10m" |
| 46 | max-file: "3" |
| 47 | command: [ |
| 48 | "/app/simulated_onu", |
| 49 | "--kafka_adapter_host=${DOCKER_HOST_IP}", |
| 50 | "--kafka_adapter_port=9092", |
| 51 | "--kafka_cluster_host=${DOCKER_HOST_IP}", |
| 52 | "--kafka_cluster_port=9092", |
| 53 | "--core_topic=rwcore", |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 54 | "--kv_store_host=${DOCKER_HOST_IP}", |
| 55 | "--kv_store_port=2379", |
khenaidoo | d2b6df9 | 2018-12-13 16:37:20 -0500 | [diff] [blame] | 56 | "--simulator_topic=simulated_onu", |
| 57 | ] |
| 58 | networks: |
| 59 | - default |
| 60 | |
| 61 | |
| 62 | networks: |
| 63 | default: |
| 64 | driver: bridge |