feat: add emqx service template
This commit is contained in:
parent
ec0668ce85
commit
d4e4e446b0
2 changed files with 29 additions and 0 deletions
7
public/svgs/emqx-enterprise.svg
Normal file
7
public/svgs/emqx-enterprise.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 20 KiB |
22
templates/compose/emqx-enterprise.yaml
Normal file
22
templates/compose/emqx-enterprise.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
# documentation: https://www.emqx.io/docs/en/latest/deploy/install-docker.html
|
||||||
|
# slogan: Open-source MQTT broker for IoT, IIoT, and connected vehicles.
|
||||||
|
# category: iot
|
||||||
|
# tags: mqtt,broker,iot,messaging,emqx,iiot
|
||||||
|
# logo: svgs/emqx-enterprise.svg
|
||||||
|
# port: 18083
|
||||||
|
|
||||||
|
services:
|
||||||
|
emqx:
|
||||||
|
image: emqx/emqx-enterprise:6.2.0
|
||||||
|
environment:
|
||||||
|
- SERVICE_URL_EMQX_18083
|
||||||
|
- EMQX_DASHBOARD__DEFAULT_PASSWORD=${SERVICE_PASSWORD_EMQX}
|
||||||
|
volumes:
|
||||||
|
- emqx_data:/opt/emqx/data
|
||||||
|
- emqx_log:/opt/emqx/log
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "/opt/emqx/bin/emqx", "ctl", "status"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 30s
|
||||||
|
retries: 5
|
||||||
|
start_period: 30s
|
||||||
Loading…
Reference in a new issue