mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add hivemq
This commit is contained in:
parent
b229fff0e9
commit
e50027bf0c
@ -351,6 +351,7 @@ A collection of delicious docker recipes.
|
||||
- [x] hasura/graphql-engine
|
||||
- [x] haproxy
|
||||
- [x] healthchecks/healthchecks
|
||||
- [x] hivemq/hivemq-ce
|
||||
- [x] homeassistant/home-assistant
|
||||
- [x] h2non/imaginary
|
||||
- [x] jellyfin/jellyfin
|
||||
|
15
hivemq/README.md
Normal file
15
hivemq/README.md
Normal file
@ -0,0 +1,15 @@
|
||||
hivemq
|
||||
======
|
||||
|
||||
[HiveMQ CE][1] is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5.
|
||||
|
||||
HiveMQ CE features:
|
||||
|
||||
- Java-based MQTT broker
|
||||
- 100% compliant MQTT to 3 and 5
|
||||
- Secure communication through TLS / SSL
|
||||
- Support for MQTT clients, including Eclipse Paho and HiveMQ MQTT Client
|
||||
- MQTT metrics for monitoring
|
||||
- Extension Framework and Open API
|
||||
|
||||
[1]: https://github.com/hivemq/hivemq-community-edition
|
12
hivemq/docker-compose.yml
Normal file
12
hivemq/docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user