Rename XXL to XL
diff --git a/deliko-xl-compose.yml b/deliko-xl-compose.yml
new file mode 100644
index 0000000..4459433
--- /dev/null
+++ b/deliko-xl-compose.yml
@@ -0,0 +1,43 @@
+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-xl.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:
+ image: "korap/kustvakt:0.74"
+ ports:
+ - "8091:8089"
+ user: root
+ volumes:
+ - "${INDEX:-/mnt/data/KorAP@DNB/Cache/target.xl/deliko.xl.index}:/kustvakt/index:z"
+ - type: bind
+ source: "${PWD}/data/"
+ target: /kustvakt/data/
+ profiles:
+ - lite
+ restart: "unless-stopped"