You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
315 B
17 lines
315 B
version: "3.8"
|
|
|
|
services:
|
|
mosquitto:
|
|
image: eclipse-mosquitto
|
|
container_name: mosquitto
|
|
restart: always
|
|
volumes:
|
|
- "./config:/mosquitto/config"
|
|
- "./data:/mosquitto/data"
|
|
- "./log:/mosquitto/log"
|
|
ports:
|
|
- '1883:1883'
|
|
- '9001:9001'
|
|
cap_add:
|
|
- NET_ADMIN
|
|
|
|
|