diff --git a/README.md b/README.md
index 910a2e43d922daa8c14de41a371386626e55afb9..321b70b197a7fa35b6fa226d68cf9a2847af6118 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,11 @@ docker compose up // Startet des docker-compose.yaml in dem aktuellen Verzeichni
 dieses projekt anschauen:
 https://github.com/influxdata/iot-api-python
 
+Added MQTTX to Docker compose for debuging (http://localhost:8081/)
+make a new Connection to Localhost (localhost) port should be 1883 for mqtt not entcrypted
+than subscribe to the co2/# topic 
+and debug
+
 Json Format für die Nachrichten
  {
   "metadata":{
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 1200587c059619f7df12cec7da87301ff7e9f0df..eac4c3cea511ca96ffb7848c70aac1c18b86285e 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -53,6 +53,13 @@ services:
       - "9001:9001"
     stdin_open: true
     tty: true
+
+  mqttx-web:
+    image: emqx/mqttx-web
+    container_name: mqttx-web
+    ports:
+      - "8081:80"  # Port 80 im Container auf 8081 lokal mappen
+    restart: unless-stopped
   
   influxdb2:
     image: influxdb:2
@@ -85,4 +92,4 @@ secrets:
     file: ./services/influxdb/influxdb2-admin-token
 volumes:
   influxdb2-data:
-  influxdb2-config:
\ No newline at end of file
+  influxdb2-config: