You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
learn_mqtt_go/docker-compose.yaml

15 lines
389 B
YAML

services:
mosquitto:
image: eclipse-mosquitto:latest
hostname: mosquitto
container_name: mosquitto
restart: unless-stopped
ports:
- "1883:1883"
- "8883:8883"
- "9001:9001"
volumes:
- ./.mosquitto:/etc/mosquitto
- ./.mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf
- ./.mosquitto/certs:/mosquitto/certs
user: "1000:1000"