appstore-1panel/apps/emqx/5.1.2/docker-compose.yml

22 lines
461 B
YAML
Raw Normal View History

2023-07-03 17:46:12 +08:00
version: '3'
services:
emqx:
image: emqx/emqx:5.1.2
2023-07-03 17:46:12 +08:00
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_8081}:8081
volumes:
- ./data:/opt/emqx/data
- ./log:/opt/emqx/log
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true