Stephane Barbarie | a75791c | 2019-01-24 10:58:06 -0500 | [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 | |
| 16 | version: '2' |
| 17 | services: |
| 18 | ro_core: |
| 19 | image: voltha-ro-core |
| 20 | entrypoint: |
| 21 | - /app/ro_core |
| 22 | - -kv_store_type=etcd |
| 23 | - -kv_store_host=${DOCKER_HOST_IP} |
| 24 | - -kv_store_port=2379 |
| 25 | - -grpc_port=50057 |
| 26 | - -banner=true |
| 27 | - -ro_core_topic=rocore |
| 28 | - -log_level=0 |
| 29 | ports: |
| 30 | - 50057:50057 |
| 31 | volumes: |
| 32 | - "/var/run/docker.sock:/tmp/docker.sock" |
| 33 | networks: |
| 34 | - default |
| 35 | |
| 36 | networks: |
| 37 | default: |
| 38 | driver: bridge |