1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/hivemq/docker-compose.yml
2022-07-22 18:43:49 +08:00

13 lines
253 B
YAML

version: "3.8"
services:
hivemq:
image: hivemq/hivemq-ce
ports:
- "1883:1883"
volumes:
- ./data/var:/opt/hivemq/data
- ./data/log:/opt/hivemq/log
environment:
- HIVEMQ_LOG_LEVEL=INFO
restart: unless-stopped