blob: 915dbcaebe42a24d6319cfef6c8cc8553be164cc [file] [log] [blame]
Dinesh Belwalkar0c328db2018-12-02 21:11:49 -08001---
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 openolt:
William Kurkiandaa6bb22019-03-07 12:26:28 -050019 image: "${REGISTRY}${REPOSITORY}voltha-adapter-openolt${TAG}"
Dinesh Belwalkar0c328db2018-12-02 21:11:49 -080020 logging:
21 driver: "json-file"
22 options:
23 max-size: "10m"
24 max-file: "3"
25 entrypoint:
26 - /app/openolt
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 - "50062:50062"
41 networks:
42 - default
43
44networks:
45 default:
46 driver: bridge