mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-03 08:43:06 +02:00
15 lines
424 B
YAML
15 lines
424 B
YAML
---
|
|
name: mosquitto
|
|
services:
|
|
mosquitto:
|
|
image: ${DOCKER_REGISTRY:-}eclipse-mosquitto
|
|
network_mode: host
|
|
volumes:
|
|
- /share/docker_data/mosquitto/conf:/mosquitto/config
|
|
- /share/docker_data/mosquitto/data:/mosquitto/data
|
|
- /share/docker_data/mosquitto/log:/mosquitto/log
|
|
labels:
|
|
com.centurylinklabs.watchtower.enable: "true"
|
|
|
|
mem_limit: 1g
|
|
restart: ${RESTART:-unless-stopped} |