blob: f5d4b6766b6b81b2d505553dab03d930d26a4b15 [file] [log] [blame]
alshabibf97b4422017-01-06 13:42:06 -08001version: '2'
2
3services:
4
Ali Al-Shabibi702f4f82017-04-13 14:42:07 -07005 freeradius:
David K. Bainbridgebba65ff2018-01-19 09:26:09 -08006 image: "${REGISTRY}marcelmaatkamp/freeradius:${RADIUS_TAG:-latest}"
Ali Al-Shabibi702f4f82017-04-13 14:42:07 -07007 ports:
8 - "1812:1812/udp"
9 - "1813:1813"
10 - "18120:18120"
11 volumes:
12 - "./data/clients.conf:/etc/raddb/clients.conf"
13 - "./data/users:/etc/raddb/users"
14 networks:
15 authnet:
16 ipv4_address: 172.25.0.100
alshabibf97b4422017-01-06 13:42:06 -080017
18 onos:
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080019 image: "${REGISTRY}voltha/onos:${TAG:-latest}"
alshabibf97b4422017-01-06 13:42:06 -080020 ports:
21 - "8101:8101" # ssh
22 - "6653:6653" # OF
23 - "8181:8181" # UI
alshabib10eadcd2017-01-09 14:47:42 -080024 environment:
25 ONOS_APPS: 'drivers,openflow-base'
alshabibf97b4422017-01-06 13:42:06 -080026 networks:
27 authnet:
28 ipv4_address: 172.25.0.200
29
Ali Al-Shabibi702f4f82017-04-13 14:42:07 -070030# onos_config_push:
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080031# image: "${REGISTRY}onos-config-push:${TAG:-latest}"
Ali Al-Shabibi702f4f82017-04-13 14:42:07 -070032# environment:
33# ONOS_CONNECTION: 'onos:8181'
34# volumes:
35# - "../docker/config/netcfg.json:/data/onos-config.json"
36# networks:
37# authnet:
38# links:
39# - "onos:onos"
alshabiba5514082017-03-31 11:08:27 -050040
41# freeradius-test:
David K. Bainbridgebba65ff2018-01-19 09:26:09 -080042# image: "${REGISTRY}marcelmaatkamp/freeradius:${RADIUS_TAG:-latest}"
alshabiba5514082017-03-31 11:08:27 -050043# command: "radtest user password freeradius 0 SECRET"
44# networks:
45# authnet:
46# ipv4_address: 172.25.0.101
alshabibf97b4422017-01-06 13:42:06 -080047
48networks:
49 authnet:
50 driver: bridge
51 ipam:
52 config:
53 - subnet: 172.25.0.0/24