Install Consul using Docker Compose
You can use the official Docker Image of Consul at https://hub.docker.com/_/consul to install Consul using Docker Compose. The contents of the Docker Compose file are as follows:
1 2 3 4 5 6 |
services: consul: image: consul:1.15.4 ports: - 8500:8500 command: "agent -dev -client=0.0.0.0" |
Here, I use the command “agent -dev” to start Consul in development mode. There is an additional… Read More