28 lines
No EOL
660 B
YAML
28 lines
No EOL
660 B
YAML
services:
|
|
# mqtt5 eclipse-mosquitto
|
|
mqtt5:
|
|
image: eclipse-mosquitto
|
|
container_name: mqtt5
|
|
healthcheck:
|
|
test: [ "CMD-SHELL", "mosquitto_sub -h localhost -p 1883 -t '$SYS/#' -C 1 -W 2 >/dev/null 2>&1 || exit 1" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 12
|
|
ports:
|
|
- "1883:1883" #default mqtt port
|
|
- "9001:9001" #default mqtt port for websockets
|
|
volumes:
|
|
- ./config:/mosquitto/config:rw
|
|
- ./data:/mosquitto/data:rw
|
|
- ./log:/mosquitto/log:rw
|
|
restart: unless-stopped
|
|
|
|
# volumes for mapping data,config and log
|
|
volumes:
|
|
config:
|
|
data:
|
|
log:
|
|
|
|
networks:
|
|
default:
|
|
name: mqtt5-network |