Service registry bridge for Docker with pluggable adapters
Go to file
niku64 bf53536dfa
Change base image back to alpine:3.7 (#7)
Не взлетит `embedded-base` здесь. Registrator линкуется на `musl` и `ld` из него при сборке, а у нас `glibc`
2018-09-11 16:07:38 +03:00
bridge Allow disabling IPv4 address registrations 2017-01-25 16:49:01 +03:00
consul Rename deprecated script of a consul check argument to args (#5) 2018-09-10 17:03:01 +03:00
consulkv Add support for Consul unix sockets 2016-02-07 22:55:41 -06:00
docs Merge multistage build and go dep usage (Gopkg.toml) (#6) 2018-09-11 14:05:10 +03: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 Change base image back to alpine:3.7 (#7) 2018-09-11 16:07:38 +03:00
Gopkg.lock Merge multistage build and go dep usage (Gopkg.toml) (#6) 2018-09-11 14:05:10 +03:00
Gopkg.toml Merge multistage build and go dep usage (Gopkg.toml) (#6) 2018-09-11 14:05:10 +03:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2016-09-20 13:55:41 -06:00
Jenkinsfile Add the repo to Jenkins 2017-01-27 09:31:01 +03:00
LICENSE new docs 2015-08-06 17:51:27 -05:00
Makefile Merge multistage build and go dep usage (Gopkg.toml) (#6) 2018-09-11 14:05:10 +03:00
mkdocs.yml analytics 2015-08-12 10:07:37 -05:00
modules.go Rename deprecated script of a consul check argument to args (#5) 2018-09-10 17:03:01 +03:00
README.md Mention -ipv4 flag in the docs. 2017-01-27 09:31:01 +03:00
registrator.go Allow disabling IPv4 address registrations 2017-01-25 16:49:01 +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 Build Status 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