diff --git a/docker-compose.yaml b/docker-compose.yaml
index cfb6fd142e147276e7f36a6b317b688f6585feda..92aa9ce14cb6032dbca02c3467b7cc69bd79999a 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -5,6 +5,10 @@ services:
         image: krining
         ports:
             - '85:85'
+        volumes:
+            - type: bind
+              source: ./config.yml
+              target: /app/src/assets/config.yml
     django:
         build: ./krini-dr
         image: krinidr
@@ -14,6 +18,9 @@ services:
             - type: bind
               source: ./sharedStorage
               target: /krinidr/datasets
+            - type: bind
+              source: ./config.yml
+              target: /krinidr/config.yml
         command: /bin/sh -c "python manage.py migrate;python manage.py shell < create_super_user.py;python manage.py runserver 0.0.0.0:8000"
     cwl:
         build: ./krini-cwl