add example compose.yaml for running docker with example data
Change-Id: I8c3b1a8107b24459ea9181df237cd6e373583d07
diff --git a/compose.yaml b/compose.yaml
new file mode 100644
index 0000000..8be99cf
--- /dev/null
+++ b/compose.yaml
@@ -0,0 +1,11 @@
+services:
+ derekovecs-test:
+ image: idscorpuslinguistics/derekovecs
+ container_name: derekovecs-test
+ ports:
+ - "3000:3000" # change first port according to your needs
+ volumes:
+ - ./example-models:/example-models:z
+ environment:
+ - MOJO_CONFIG=/example-models/example-docker.conf
+ restart: unless-stopped