From f94744fc3564604e65188dc10e7e510f821ce6b2 Mon Sep 17 00:00:00 2001 From: thomas Date: Sat, 10 May 2025 10:54:04 +0000 Subject: [PATCH] =?UTF-8?q?mqtt-docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mqtt-docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mqtt-docker-compose.yml diff --git a/mqtt-docker-compose.yml b/mqtt-docker-compose.yml new file mode 100644 index 0000000..f41c570 --- /dev/null +++ b/mqtt-docker-compose.yml @@ -0,0 +1,15 @@ +services: + eclipse-mosquitto: + stdin_open: true + tty: true + ports: + - 1883:1883 + - 9001:9001 + restart: unless-stopped + container_name: ${NAME} + volumes: + - ${VOLUME_ROOT}/config:/mosquitto/config + - ${VOLUME_ROOT}/data:/mosquitto/data + - ${VOLUME_ROOT}/log:/mosquitto/log + - /etc/ssl/certs:/mosquitto/certs:ro + image: ${IMAGE} \ No newline at end of file