blob: aeba62562067f08cd6e7f1a5b748c0ebc4975bab [file] [log] [blame]
alshabibf97b4422017-01-06 13:42:06 -08001version: '2'
2
3services:
4
alshabiba5514082017-03-31 11:08:27 -05005# freeradius:
6# image: "marcelmaatkamp/freeradius"
7# 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:
alshabib7db13562017-01-09 21:21:34 -080019 image: "cord/onos"
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
alshabiba5514082017-03-31 11:08:27 -050030 onos_config_push:
31 image: onos-config-push:phase2
32 environment:
33 ONOS_CONNECTION: 'onos:8181'
34 volumes:
35 - "../docker/config/netcfg.json:/data/onos-config.json"
alshabibf97b4422017-01-06 13:42:06 -080036 networks:
37 authnet:
alshabiba5514082017-03-31 11:08:27 -050038 links:
39 - "onos:onos"
40
41# freeradius-test:
42# image: "marcelmaatkamp/freeradius"
43# 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