diff --git a/backend b/backend
index f789b573c6f01f2496c7d8eb1b0e5c7082bbf6dc..f95066a2ba107dec3d5bb7d6b47ecdb9fee23a67 160000
--- a/backend
+++ b/backend
@@ -1 +1 @@
-Subproject commit f789b573c6f01f2496c7d8eb1b0e5c7082bbf6dc
+Subproject commit f95066a2ba107dec3d5bb7d6b47ecdb9fee23a67
diff --git a/docker-compose.yml b/docker-compose.yml
index f5200a711025bffcd2ecbb3e42c10e9a41f13bbe..5def0f15f57d34f5d9db053b3479c0cd8b66b9f5 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -3,6 +3,8 @@ version: "2"
 volumes:
   database:
     driver: local
+  files:
+    driver: local
 
 services:
   frontend:
@@ -20,6 +22,8 @@ services:
     ports:
       - "4000:4000"
     restart: always
+    volumes:
+      - files:/usr/src/app/public/
 
   # The nginx image is created with multi stage build
   # We first run a nodejs container to build the reactjs app