Zack Williams | 998f442 | 2018-09-19 10:38:57 -0700 | [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 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 16 | version: '2' |
| 17 | services: |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 18 | adapter_ponsim_olt: |
| 19 | image: "${REGISTRY}${REPOSITORY}voltha-adapter-ponsim-olt${TAG}" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 20 | logging: |
| 21 | driver: "json-file" |
| 22 | options: |
| 23 | max-size: "10m" |
| 24 | max-file: "3" |
| 25 | command: [ |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 26 | "/voltha/python/adapters/ponsim_olt/main.py", |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 27 | "-v", |
| 28 | "--name=ponsim_olt", |
Richard Jankowski | 55f75db | 2018-10-22 16:07:51 -0400 | [diff] [blame] | 29 | "--kafka_adapter=${DOCKER_HOST_IP}:9092", |
| 30 | "--kafka_cluster=${DOCKER_HOST_IP}:9092", |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 31 | "--core_topic=rwcore" |
| 32 | ] |
| 33 | networks: |
| 34 | - default |
| 35 | |
khenaidoo | 9a46896 | 2018-09-19 15:33:13 -0400 | [diff] [blame] | 36 | adapter_ponsim_onu: |
| 37 | image: "${REGISTRY}${REPOSITORY}voltha-adapter-ponsim-onu${TAG}" |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 38 | logging: |
| 39 | driver: "json-file" |
| 40 | options: |
| 41 | max-size: "10m" |
| 42 | max-file: "3" |
| 43 | command: [ |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 44 | "/voltha/python/adapters/ponsim_onu/main.py", |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 45 | "-v", |
| 46 | "--name=ponsim_onu", |
Richard Jankowski | 55f75db | 2018-10-22 16:07:51 -0400 | [diff] [blame] | 47 | "--kafka_adapter=${DOCKER_HOST_IP}:9092", |
| 48 | "--kafka_cluster=${DOCKER_HOST_IP}:9092", |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 49 | "--core_topic=rwcore" |
| 50 | ] |
| 51 | networks: |
| 52 | - default |
| 53 | |
| 54 | networks: |
| 55 | default: |
Zack Williams | 998f442 | 2018-09-19 10:38:57 -0700 | [diff] [blame] | 56 | driver: bridge |