mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
13 lines
253 B
YAML
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
|