1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/hivemq/docker-compose.yml

13 lines
253 B
YAML
Raw Normal View History

2022-07-22 10:43:49 +00:00
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