Files
mosquitto/docker-compose.yml
Márcio Fernandes 75b555a0d0
Some checks are pending
/ deploy (push) Waiting to run
added docker image to registry
2024-11-02 22:37:57 +00:00

24 lines
407 B
YAML

version: "3"
services:
mosquitto:
image: git.limbosolutions/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: