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: |
| 18 | ponsim_olt: |
| 19 | image: "${REGISTRY}${REPOSITORY}voltha-ponsim${TAG}" |
| 20 | logging: |
| 21 | driver: "json-file" |
| 22 | options: |
| 23 | max-size: "10m" |
| 24 | max-file: "3" |
| 25 | entrypoint: |
| 26 | - /app/ponsim |
| 27 | - -device_type |
| 28 | - "OLT" |
| 29 | - -onus |
| 30 | - "4" |
| 31 | - -internal_if |
| 32 | - "eth0" |
| 33 | - -external_if |
| 34 | - "eth0" |
| 35 | - -vcore_endpoint |
| 36 | - "vcore" |
| 37 | - -promiscuous |
| 38 | - -verbose |
| 39 | ports: |
| 40 | - "50060:50060" |
| 41 | networks: |
| 42 | - default |
| 43 | |
| 44 | networks: |
| 45 | default: |
Zack Williams | 998f442 | 2018-09-19 10:38:57 -0700 | [diff] [blame] | 46 | driver: bridge |