get event proxy working on local including mqtt message sending
This commit is contained in:
parent
0897210754
commit
aa5a4eda05
6 changed files with 218 additions and 3 deletions
17
event_proxy/docker-compose.yml
Normal file
17
event_proxy/docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
mqtt:
|
||||
image: eclipse-mosquitto:latest
|
||||
container_name: mqtt-dev
|
||||
ports:
|
||||
- "5883:1883"
|
||||
- "9001:9001"
|
||||
volumes:
|
||||
- ./mosquitto.conf:/mosquitto/config/mosquitto.conf
|
||||
- mosquitto_data:/mosquitto/data
|
||||
- mosquitto_logs:/mosquitto/log
|
||||
environment:
|
||||
- TZ=UTC
|
||||
|
||||
volumes:
|
||||
mosquitto_data:
|
||||
mosquitto_logs:
|
||||
Loading…
Add table
Add a link
Reference in a new issue