diff --git a/experimental/compose/docker-compose.yml b/experimental/compose/docker-compose.yml
new file mode 100644
index 0000000000000000000000000000000000000000..23ec35c2310f3034f2f80100b09f71e7039852af
--- /dev/null
+++ b/experimental/compose/docker-compose.yml
@@ -0,0 +1,15 @@
+version: '3'
+services:
+        luoweb:
+                image: "schaertl/luoweb"
+                ports:
+                        - 7300:7300
+
+        graphdb:
+                # We use an unoffcial image as there is no official
+                # image for the free version. It is possible to build
+                # your own free container but for quick development I
+                # prefer this solution as it means no special downloads.
+                image: "daschswiss/graphdb:9.0.0-free"
+                ports:
+                        - 7200:7200