Adding a compose file to start onos and freeradius

Contains a test container to test whether radius
authenticates correctly. See compose/README.md
for more info.

Change-Id: Ifc489330049e3b41acd1b1006871c96aa889d89e
diff --git a/compose/docker-compose-auth-test.yml b/compose/docker-compose-auth-test.yml
new file mode 100644
index 0000000..3621249
--- /dev/null
+++ b/compose/docker-compose-auth-test.yml
@@ -0,0 +1,40 @@
+version: '2'
+
+services:
+
+ freeradius:
+  image: "marcelmaatkamp/freeradius"
+  ports:
+   - "1812:1812/udp"
+   - "1813:1813"
+   - "18120:18120"
+  volumes:
+   - "./data/clients.conf:/etc/raddb/clients.conf"
+   - "./data/users:/etc/raddb/users"
+  networks:
+   authnet:
+    ipv4_address: 172.25.0.100
+
+ onos:
+  image: "opencord/onos"
+  ports:
+   - "8101:8101" # ssh
+   - "6653:6653" # OF
+   - "8181:8181" # UI
+  networks:
+    authnet:
+     ipv4_address: 172.25.0.200
+
+ freeradius-test:
+  image: "marcelmaatkamp/freeradius"
+  command: "radtest user password freeradius 0 SECRET"
+  networks:
+   authnet:
+    ipv4_address: 172.25.0.101
+
+networks:
+  authnet:
+    driver: bridge
+    ipam:
+      config:
+      - subnet: 172.25.0.0/24