blob: 11fc61af351add91873db9cf88b91aae012bd0ed [file] [log] [blame]
Dinesh Belwalkar0c328db2018-12-02 21:11:49 -08001---
Joey Armstrong7a9af442024-01-03 19:26:36 -05002# Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Dinesh Belwalkar0c328db2018-12-02 21:11:49 -08003# Copyright 2018 the original author or authors.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17version: '2'
18services:
19 openolt:
William Kurkiandaa6bb22019-03-07 12:26:28 -050020 image: "${REGISTRY}${REPOSITORY}voltha-adapter-openolt${TAG}"
Dinesh Belwalkar0c328db2018-12-02 21:11:49 -080021 logging:
22 driver: "json-file"
23 options:
24 max-size: "10m"
25 max-file: "3"
26 entrypoint:
27 - /app/openolt
28 - -device_type
29 - "OLT"
30 - -onus
31 - "4"
32 - -internal_if
33 - "eth0"
34 - -external_if
35 - "eth0"
36 - -vcore_endpoint
37 - "vcore"
38 - -promiscuous
39 - -verbose
40 ports:
41 - "50062:50062"
42 networks:
43 - default
44
45networks:
46 default:
47 driver: bridge