diff --git a/notebook/docker-compose.yml b/notebook/docker-compose.yml
index cb6f09f6e233305df3045ba89a5b6d424844ed69..352e7a0186916e43e38e062febcc197defb07501 100644
--- a/notebook/docker-compose.yml
+++ b/notebook/docker-compose.yml
@@ -7,30 +7,30 @@ services:
         ports:
             - "8888:8888"
         volumes:
-            - unlock-data:/home/jovyan
+            - unlockdata:/home/jovyan
     rstudio:
         container_name: rstudio
         image: docker-registry.wur.nl/unlock/docker:rstudio
         ports:
             - "8787:8787"
         volumes:
-            - unlock-data:/home/rstudio
+            - unlockdata:/home/rstudio
         environment:
             - PASSWORD=57Grv3xFc2E96nsehAJ4
             - ROOT=TRUE
     graphdb:
         container_name: graphdb
         image: docker-registry.wur.nl/unlock/docker:graphdb
-        command: /graphdb-free/bin/graphdb -Dgraphdb.home=/unlock-data/graphdb
+        command: /graphdb-free/bin/graphdb -Dgraphdb.home=/unlockdata/graphdb
         ports:
             - "7200:7200"
         volumes: 
-            - unlock-data:/unlock-data
+            - unlockdata:/home/graphdb
 
 volumes:
-  unlock-data:
+  unlockdata:
     driver: local
     driver_opts:
       o: bind
       type: none
-      device: ~/unlock-data
\ No newline at end of file
+      device: /Users/jasperk/gitlab/m-unlock/notebook/notebooks
diff --git a/notebook/jupyter/Dockerfile b/notebook/jupyter/Dockerfile
index 4be0ef181d56e047192c33f45137a1400096949f..db817072a34d803675ba742ca3c0010c38efc191 100644
--- a/notebook/jupyter/Dockerfile
+++ b/notebook/jupyter/Dockerfile
@@ -15,7 +15,7 @@ LABEL tags="Notebook"
 ### Change to root to install dependencies
 USER root
 
-RUN apt-get update && apt-get install -y build-essential g++
+RUN apt-get update && apt-get install -y build-essential g++ python3-pybind11
 
 USER jovyan