Matteo Scandolo | 3896c47 | 2017-08-01 13:31:42 -0700 | [diff] [blame] | 1 | |
| 2 | {# |
| 3 | Copyright 2017-present Open Networking Foundation |
| 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 | #} |
| 17 | |
| 18 | |
Scott Baker | 58e88a8 | 2016-11-18 13:39:09 -0800 | [diff] [blame] | 19 | # ONOS with XOS features for docker-compose |
| 20 | version: '2' |
| 21 | |
| 22 | services: |
| 23 | |
| 24 | xos-onos: |
Jonathan Hart | 2a3c01e | 2017-01-13 17:32:27 -0800 | [diff] [blame] | 25 | image: {{ onos_docker_image }} |
Scott Baker | 58e88a8 | 2016-11-18 13:39:09 -0800 | [diff] [blame] | 26 | ports: |
David K. Bainbridge | df88fd9 | 2017-01-03 09:39:49 -0800 | [diff] [blame] | 27 | - "6653:6653" # OpenFlow |
| 28 | - "8101:8101" # ONOS SSH |
| 29 | - "8181:8181" # ONOS UI/API |
| 30 | - "9876:9876" # ONOS Clustering |
| 31 | - "2620:2620" # vRouter |
Andy Bavier | e6e915c | 2017-03-28 17:19:06 -0400 | [diff] [blame] | 32 | restart: unless-stopped |
Scott Baker | 58e88a8 | 2016-11-18 13:39:09 -0800 | [diff] [blame] | 33 | |