diff --git a/docker_portainer_stacks/mqtt-explorer.yml b/docker_portainer_stacks/mqtt-explorer.yml
new file mode 100644
index 0000000..cabd090
--- /dev/null
+++ b/docker_portainer_stacks/mqtt-explorer.yml
@@ -0,0 +1,21 @@
+---
+version: "3.8"
+
+volumes:
+  mqttexplorer:
+
+services:
+  mqtt-explorer:
+    image: smeagolworms4/mqtt-explorer:latest
+    container_name: mqtt-explorer
+    environment:
+      - PUID=1000
+      - PGID=1000
+      - TZ=Europe/Amsterdam
+      - HTTP_PORT=4000
+      - CONFIG_PATH=/mqtt-explorer/config
+    volumes:
+      - mqttexplorer:/mqtt-explorer/config
+    ports:
+      - 4000:4000
+    restart: unless-stopped
\ No newline at end of file