Files
mosquitto/docker-compose.yml
Márcio Fernandes 4d66b72ef6
All checks were successful
/ deploy (push) Successful in 10s
modified: .gitea/workflows/deploy.yml
modified:   docker-compose.yml
2024-12-29 22:11:06 +00:00

26 lines
465 B
YAML

services:
mosquitto:
#build:
# dockerfile: Dockerfile
# context: ./docker
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: