Add preliminary configuration for DeLiKo-XXL
diff --git a/deliko-xxl-compose.yml b/deliko-xxl-compose.yml
new file mode 100644
index 0000000..6ac9357
--- /dev/null
+++ b/deliko-xxl-compose.yml
@@ -0,0 +1,45 @@
+volumes:
+  example-index:
+services:
+  kalamar:
+    image: "korap/kalamar:v0.60-DNB-2"
+    ports:
+      - "4002:64543"
+    environment:
+      KALAMAR_API: "http://kustvakt:8089/api/"
+    depends_on:
+      - kustvakt
+    volumes:
+      - type: bind
+        source: ./html/robots.txt
+        target: /kalamar/public/robots.txt
+      - type: bind
+        source: ./kalamar.conf
+        target: /kalamar/kalamar.conf
+      - type: bind
+        source: ./data/doc/buchpreis.html.ep
+        target: /kalamar/templates/custom/doc/buchpreis.html.ep
+      - type: bind
+        source: ./data/doc/intro.html.ep
+        target: /kalamar/templates/custom/intro.html.ep
+      - type: bind
+        source: ./data/partial/citation.html.ep
+        target: /kalamar/templates/custom/partial/citation.html.ep
+    profiles:
+      - lite
+    restart: "unless-stopped"
+  kustvakt:
+    environment:
+      - INDEX=${INDEX:-${PWD}/dnb.index}
+    image: "korap/kustvakt:0.74"
+    ports:
+      - "8091:8089"
+    user: root
+    volumes:
+      - "${INDEX}:/kustvakt/index:z"
+      - type: bind
+        source: "${PWD}/data/"
+        target: /kustvakt/data/
+    profiles:
+      - lite
+    restart: "unless-stopped"