diff --git a/docker/demo/docker-compose.yml b/docker/demo/docker-compose.yml
index 8cb4ed158f32ecc7d296f1bede3ae5d3f27c7f00..6dea5ddf61ebc41499653f2fd2c843b2adfa0643 100644
--- a/docker/demo/docker-compose.yml
+++ b/docker/demo/docker-compose.yml
@@ -101,6 +101,21 @@ services:
       - simulation-data:/data
     command: ./scripts/run_simulation_2_nodes.sh
 
+  data-visualisation:
+    image: registry.gitlab.limos.fr/ecomobicoin/data-visualisation:latest
+    container_name: data-visualisation
+    platform: linux/amd64/r
+    environment:
+      - TOTAL_SIMULATION_TIME=1830
+      - RPC_URL=http://node-1:8545
+    ports:
+      - 8000:8000
+    volumes:
+      - /app
+    depends_on:
+      - node-1
+    restart: on-failure
+
 volumes:
   ecomobicoin-data:
   simulation-data: