First voltha-go commit.  This commit is focussed on setting up the voltha-go structure as well as the kvstore library
diff --git a/compose/rw_core.yml b/compose/rw_core.yml
new file mode 100644
index 0000000..0fde367
--- /dev/null
+++ b/compose/rw_core.yml
@@ -0,0 +1,17 @@
+version: '2'
+services:
+  rw_core:
+    image: voltha-rw-core
+    entrypoint:
+        - /app/rw_core
+        - -kv-store-type=etcd
+        - -kv-store-host=${DOCKER_HOST_IP}
+        - -kv-store-port=2379
+    volumes:
+    - "/var/run/docker.sock:/tmp/docker.sock"
+    networks:
+    - default
+
+networks:
+  default:
+    driver: bridge