
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: 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”… Read More