-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c56172
commit 93f67a0
Showing
19 changed files
with
82 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
W9_REPO=emqx | ||
W9_DIST=community | ||
W9_VERSION=latest | ||
|
||
W9_POWER_PASSWORD=1PrMxExC45LsCT | ||
W9_HTTP_PORT_SET=9001 | ||
W9_MQTT_PORT_SET=9002 | ||
|
||
#### -- Not allowed to edit below environments when recreate app based on existing data -- #### | ||
|
||
W9_ID=emqx | ||
W9_HTTP_PORT=18083 | ||
# credential is static, when login system requires compulsory password change | ||
# from: https://www.emqx.io/docs/en/latest/dashboard/introduction.html#first-login | ||
|
||
W9_LOGIN_USER=admin | ||
W9_LOGIN_PASSWORD=public | ||
|
||
W9_URL=example.yourdomain.com | ||
W9_NETWORK=websoft9 | ||
|
||
#### ----------------------------------------------------------------------------------------- #### | ||
|
||
|
||
# All EMQX Configuration in etc/emqx.conf can be configured via environment variables. | ||
# refer to: https://www.emqx.io/docs/en/latest/configuration/configuration.html | ||
# e.g EMQX_LISTENERS__SSL__DEFAULT__ACCEPTORS <--> listeners.ssl.default.acceptors |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# EMQX | ||
|
||
- credentials is staic value: https://www.emqx.io/docs/en/latest/dashboard/introduction.html#first-login or can set by ENV? | ||
- HOST is need? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# image: https://hub.docker.com/r/emqx/emqx | ||
# docs: https://www.emqx.io/docs/en/latest/deploy/install-docker.html | ||
|
||
version: '3.8' | ||
|
||
services: | ||
|
||
emqx: | ||
image: $W9_REPO:$W9_VERSION | ||
container_name: $W9_ID | ||
restart: unless-stopped | ||
ports: | ||
- $W9_HTTP_PORT_SET:18083 #Web console | ||
- $W9_MQTT_PORT_SET:1883 #default MQTT | ||
#- 8883:8883 #default MQTT at TLS/SSL | ||
#- 8083:8083 #WebSocket | ||
#- 8084:8084 #WebSocket at TLS/SSL | ||
#- 8080:8080 # HTTP Admin API | ||
env_file: .env | ||
volumes: | ||
- data:/opt/emqx/data | ||
- etc:/opt/emqx/etc | ||
- log:/opt/emqx/log | ||
|
||
volumes: | ||
data: | ||
etc: | ||
log: | ||
|
||
networks: | ||
default: | ||
name: $W9_NETWORK | ||
external: true |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "emqx", | ||
"trademark": "EMQX", | ||
"release": false, | ||
"fork_url": "https://github.com/emqx/emqx", | ||
"edition": [ | ||
{ | ||
"dist": "community", | ||
"version": ["5.5","5.4","5.3","5.2","5.1","latest"] | ||
} | ||
], | ||
"requirements": { | ||
"cpu": "1", | ||
"memory": "1", | ||
"disk": "1", | ||
"url": "https://www.emqx.io/docs/en/latest/deploy/install.html" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.