Deploy with Docker
This chapter introduces how to use the official Docker image to install and run EMQX, and how to use Docker Compose to build an EMQX cluster.
Note
If you want to keep the data, mount the EMQX data directory (
/opt/emqx/data
) out of the container, so that the data will persist even if the container no longer exists.In Docker,
localhost
or127.0.0.1
points to the internal address of the container. Use the host’s IP or host networking (opens new window) to access the host address. If you are using Docker for Mac or Docker for Windows, you can usehost.docker.internal
as the host address.
Use Docker to Run A Single EMQX Node
This section will introduce how to use the Docker image to install the latest version of EMQX. If you want to work with other versions, please visit the EMQX Deployment page (opens new window).
- To get the Docker image, run:
docker pull emqx/emqx:5.1.0
- To start the Docker container, run:
docker run -d --name emqx -p 1883:1883 -p 8083:8083 -p 8084:8084 -p 8883:8883 -p 18083:18083 emqx:5.1.0
For more information about EMQX official docker image, see Docker Hub - emqx (opens new window).
Use Docker Compose to Build an EMQX Cluster
Docker Compose is a tool for defining and running multi-container Docker applications. This section introduces how to use Docker Compose to create a static EMQX cluster.
TIP
Docker Compose is already included in Docker Desktop. If your Docker Compose still needs to be installed, you may refer to Install Docker Compose (opens new window) for detailed operating steps.
- Create a
docker-compose.yml
file under any directory with the following content:
version: '3'
services:
emqx1:
image: emqx:5.1.0
container_name: emqx1
environment:
- "EMQX_NODE_NAME=emqx@node1.emqx.io"
- "EMQX_CLUSTER__DISCOVERY_STRATEGY=static"
- "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io,emqx@node2.emqx.io]"
healthcheck:
test: ["CMD", "/opt/emqx/bin/emqx_ctl", "status"]
interval: 5s
timeout: 25s
retries: 5
networks:
emqx-bridge:
aliases:
- node1.emqx.io
ports:
- 1883:1883
- 8083:8083
- 8084:8084
- 8883:8883
- 18083:18083
# volumes:
# - $PWD/emqx1_data:/opt/emqx/data
emqx2:
image: emqx:5.1.0
container_name: emqx2
environment:
- "EMQX_NODE_NAME=emqx@node2.emqx.io"
- "EMQX_CLUSTER__DISCOVERY_STRATEGY=static"
- "EMQX_CLUSTER__STATIC__SEEDS=[emqx@node1.emqx.io,emqx@node2.emqx.io]"
healthcheck:
test: ["CMD", "/opt/emqx/bin/emqx_ctl", "status"]
interval: 5s
timeout: 25s
retries: 5
networks:
emqx-bridge:
aliases:
- node2.emqx.io
# volumes:
# - $PWD/emqx2_data:/opt/emqx/data
networks:
emqx-bridge:
driver: bridge
- In the command line tool, switch to the directory where
docker-compose.yml
is stored, and run the following command to start the EMQX cluster:
docker-compose up -d
- To check the cluster status, run:
$ docker exec -it emqx1 sh -c "emqx_ctl cluster status"
Cluster status: #{running_nodes => ['emqx@node1.emqx.com','emqx@node2.emqx.com'],
stopped_nodes => []}
Next
Use an MQTT client to connect EMQX for message publish/subscribe. For more information, see Publish and Subscribe.
On how to configure EMQX parameters and other features, see Configuration.
On how to build an EMQX cluster with multiple nodes, see Clustering.