Initial commit

Change-Id: I26b2a474e51648ceda164fbf29b0c18581bd5a00
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..da7e154
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/todo.org
+/myindex
\ No newline at end of file
diff --git a/Readme.md b/Readme.md
new file mode 100644
index 0000000..9164e73
--- /dev/null
+++ b/Readme.md
@@ -0,0 +1,15 @@
+# Requirements
+
+Install [docker](https://www.docker.com/) and [docker compose](https://github.com/docker/compose).
+
+# Starting
+
+To download, intialize and run KorAP pointing to a certain directory index
+(in this example `myindex` in the local directory), run
+
+```shell
+$ INDEX=./myindex docker-compose up
+```
+
+This will make the frontend be available at
+`localhost:64543`.
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..79a66bf
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,14 @@
+version: '3.8'
+services:
+  kalamar:
+    image: "korap/kalamar"
+    ports:
+      - "64543:64543"
+    environment:
+      KALAMAR_API: "http://kustvakt:8089/api/"
+  kustvakt:
+    image: "korap/kustvakt"
+    expose:
+      - "8089"
+    volumes:
+      - "${INDEX}:/kustvakt/index"