compose.yaml erneut hinzugefügt

This commit is contained in:
2026-03-23 16:02:15 +01:00
parent c7a890f917
commit c19bb06603
23 changed files with 906 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
services:
eclipse-mosquitto:
labels:
- com.hanold.environment=production
- wud.watch=true
restart: unless-stopped
deploy:
resources:
limits:
memory: 64M
stdin_open: true
tty: true
ports:
- 9883:1883
volumes:
- ./config:/mosquitto/config
- ./data:/mosquitto/data
- ./log:/mosquitto/log
image: eclipse-mosquitto:latest
container_name: mqtt
healthcheck:
test:
- CMD-SHELL
- nc -z localhost 1883
interval: 20s
timeout: 5s
retries: 3
networks: {}