Service registry bridge for Docker with pluggable adapters
Go to file
Matt Palmer d6f6d9e8e6 Automatically register IPv6 container addresses for services
You need to pass a new flag, `-ipv6`, to registrator, in order to enable
this support, to prevent surprising accidents, but once you do, everything
Just Works with feature parity between IPv4 and IPv6 addresses.  You can
also manage the overrides on a per-address-family basis, if you want to go
super-fancy.  Also has documentation!
2017-01-25 16:47:20 +03:00
bridge Automatically register IPv6 container addresses for services 2017-01-25 16:47:20 +03:00
consul Merge pull request #445 from selimekizoglu/consul-status 2016-09-14 23:00:45 -06:00
consulkv Add support for Consul unix sockets 2016-02-07 22:55:41 -06:00
docs Automatically register IPv6 container addresses for services 2017-01-25 16:47:20 +03:00
etcd Change default port for etc2 backend to default 2379 2016-02-11 12:16:13 +13:00
skydns2 Cleanup dangling services 2015-11-26 11:02:24 +01:00
zookeeper Have the zookeeper backend use the host port for the service paths, allow publishing services if the base service path already exists, and allow publishing into the root of zookeeper. (#367) 2016-04-19 17:59:53 -05:00
.dockerignore overhaul of build/release system, modeled after logspout overhaul 2015-02-18 11:53:03 -06:00
.gitignore overhaul of build/release system, modeled after logspout overhaul 2015-02-18 11:53:03 -06:00
CHANGELOG.md bump 2016-03-05 16:40:30 -06:00
circle.yml new docs 2015-08-06 17:51:27 -05:00
Dockerfile Fix build issues Close #468 2016-09-05 11:39:59 +02:00
Dockerfile.dev Fix build issues Close #468 2016-09-05 11:39:59 +02:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2016-09-20 13:55:41 -06:00
LICENSE new docs 2015-08-06 17:51:27 -05:00
Makefile Allow DEV_RUN_OPTS to be used when calling make dev 2015-08-15 01:18:41 +10:00
mkdocs.yml analytics 2015-08-12 10:07:37 -05:00
modules.go Initial basic zookeeper backend for registrator 2016-01-03 22:55:17 -05:00
README.md Update README.md 2016-12-28 14:26:42 -06:00
registrator.go Automatically register IPv6 container addresses for services 2017-01-25 16:47:20 +03:00
SPONSORS Align SPONSORS text 2015-10-24 03:40:13 -04:00
VERSION bump 2016-03-05 16:40:30 -06:00

Registrator

Service registry bridge for Docker.

Circle CI Docker pulls IRC Channel

Registrator automatically registers and deregisters services for any Docker container by inspecting containers as they come online. Registrator supports pluggable service registries, which currently includes Consul, etcd and SkyDNS 2.

Full documentation available at http://gliderlabs.com/registrator

Getting Registrator

Get the latest release, master, or any version of Registrator via Docker Hub:

$ docker pull gliderlabs/registrator:latest

Latest tag always points to the latest release. There is also a :master tag and version tags to pin to specific releases.

Using Registrator

The quickest way to see Registrator in action is our Quickstart tutorial. Otherwise, jump to the Run Reference in the User Guide. Typically, running Registrator looks like this:

$ docker run -d \
    --name=registrator \
    --net=host \
    --volume=/var/run/docker.sock:/tmp/docker.sock \
    gliderlabs/registrator:latest \
      consul://localhost:8500

Contributing

Pull requests are welcome! We recommend getting feedback before starting by opening a GitHub issue or discussing in Slack.

Also check out our Developer Guide on Contributing Backends and Staging Releases.

Sponsors and Thanks

Big thanks to Weave for sponsoring, Michael Crosby for skydock, and the Consul mailing list for inspiration.

For a full list of sponsors, see SPONSORS.

License

MIT