--- page_title: Docker discovery page_description: discovery page_keywords: docker, clustering, discovery --- # Discovery Docker comes with multiple Discovery backends. ## Backends ### Using etcd Point your Docker Engine instances to a common etcd instance. You can specify the address Docker uses to advertise the node using the `--cluster-advertise` flag. ```bash $ dockerd -H= --cluster-advertise= --cluster-store etcd://,/ ``` ### Using consul Point your Docker Engine instances to a common Consul instance. You can specify the address Docker uses to advertise the node using the `--cluster-advertise` flag. ```bash $ dockerd -H= --cluster-advertise= --cluster-store consul:/// ``` ### Using zookeeper Point your Docker Engine instances to a common Zookeeper instance. You can specify the address Docker uses to advertise the node using the `--cluster-advertise` flag. ```bash $ dockerd -H= --cluster-advertise= --cluster-store zk://,/ ```