mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
b429cad6e6
* chore(deps): update emqx/emqx docker tag to v5.7.1 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
22 lines
479 B
YAML
22 lines
479 B
YAML
services:
|
|
emqx:
|
|
image: emqx/emqx:5.7.1
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
user: '0'
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:18083
|
|
- ${EMQX_PORT_1883}:1883
|
|
- ${EMQX_PORT_8083}:8083
|
|
- ${EMQX_PORT_8084}:8084
|
|
- ${EMQX_PORT_8883}:8883
|
|
volumes:
|
|
- ./data:/opt/emqx/data
|
|
- ./log:/opt/emqx/log
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |