test: documentation
All checks were successful
/ deploy (push) Successful in 10s
/ notify-portainer (push) Successful in 12s

This commit is contained in:
2024-11-02 23:53:31 +00:00
parent 2534a502d2
commit 474e9d6a3c
2 changed files with 24 additions and 1 deletions

22
docker/README.md Normal file
View File

@@ -0,0 +1,22 @@
# 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:
```