Skip to content

Commit

Permalink
add mqttx
Browse files Browse the repository at this point in the history
  • Loading branch information
chendelin1982 authored Mar 3, 2024
1 parent bfbd318 commit 91896ae
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 28 deletions.
17 changes: 17 additions & 0 deletions apps/mqttx/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
W9_REPO=emqx/mqttx-web
W9_DIST=community
W9_VERSION=latest

W9_HTTP_PORT_SET=9001

#### -- Not allowed to edit below environments when recreate app based on existing data -- ####

W9_ID=mqttx
W9_HTTP_PORT=80
W9_URL=example.youdomain.com
W9_NETWORK=websoft9

#### ----------------------------------------------------------------------------------------- ####


# Below environment is created by mqttx
5 changes: 5 additions & 0 deletions apps/mqttx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## Release
### Fixes and Enhancements

4 changes: 4 additions & 0 deletions apps/mqttx/Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# MQTTX

- support cli?
- volumes?
20 changes: 20 additions & 0 deletions apps/mqttx/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# docs: https://mqttx.app/web
# image: https://hub.docker.com/r/emqx/mqttx-web

version: '3.8'

services:

mqttx:
image: $W9_REPO:$W9_VERSION
container_name: $W9_ID
restart: unless-stopped
ports:
- $W9_HTTP_PORT_SET:80
env_file: .env


networks:
default:
name: $W9_NETWORK
external: true
3 changes: 3 additions & 0 deletions apps/mqttx/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# About

This folder includes files mount to container and used by Websoft9
18 changes: 18 additions & 0 deletions apps/mqttx/variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "mqttx",
"trademark": "MQTTX",
"release": true,
"fork_url": "https://github.com/emqx/MQTTX",
"edition": [
{
"dist": "community",
"version": ["2.2","latest"]
}
],
"requirements": {
"cpu": "1",
"memory": "1",
"disk": "1",
"url": "https://github.com/emqx/MQTTX"
}
}
1 change: 1 addition & 0 deletions apps/rabbitmq/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ services:
- ${W9_ER_PORT_SET}:4369
- ${W9_MQ_PORT_SET}:5672
- ${W9_HTTP_PORT_SET}:15672
#- 1883:1883 #for MQTT
env_file: .env
volumes:
- 'rabbitmq_data:/var/lib/rabbitmq'
Expand Down
28 changes: 0 additions & 28 deletions apps/template/README.md

This file was deleted.

0 comments on commit 91896ae

Please sign in to comment.