Files
mosquitto/docker/README.md
Márcio Fernandes 474e9d6a3c
All checks were successful
/ deploy (push) Successful in 10s
/ notify-portainer (push) Successful in 12s
test: documentation
2024-11-02 23:53:31 +00:00

23 lines
429 B
Markdown

# mosquitto - docker
``` yaml
services:
mosquitto:
image: git.limbosolutions.com/marcio.fernandes/mosquitto:latest
ports:
- '1883:1883'
- '8883:8883'
environment:
- TZ= Europe/Lisbon
- |
MOSQUITTO_CONFIG_CONTENT=
listener ${LISTENER_PORT}
allow_anonymous ${ALLOW_ANONYMOUS}
volumes:
- data:/mosquitto/data
restart: unless-stopped
volumes:
data:
```