blob: 839d206993463166d7f79749cf948a18d0a1f990 [file] [log] [blame]
Chip Boling8e042f62019-02-12 16:14:34 -06001---
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'
17services:
18 ponsim_onu:
19 image: "${REGISTRY}${REPOSITORY}voltha-adapter-adtran-onu${TAG}"
20 logging:
21 driver: "json-file"
22 options:
23 max-size: "10m"
24 max-file: "3"
25 entrypoint:
26 - /app/adtran_onu
27 - -device_type
28 - "OLT"
29 - -internal_if
30 - "eth0"
31 - -external_if
32 - "eth0"
33 - -verbose
34 ports:
35 - "50061:50061"
36 networks:
37 - default
38
39networks:
40 default:
41 driver: bridge