Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Registrator | 4,598 | 1 | 8 months ago | 1 | October 23, 2014 | 263 | mit | Go | ||
Service registry bridge for Docker with pluggable adapters | ||||||||||
Hubot Rocketchat | 506 | 53 | 17 | 2 years ago | 39 | April 30, 2018 | 65 | mit | JavaScript | |
Rocket.Chat Hubot adapter | ||||||||||
Prometheus Postgresql Adapter | 329 | 3 years ago | 4 | November 01, 2020 | 35 | apache-2.0 | Go | |||
Use PostgreSQL as a remote storage database for Prometheus | ||||||||||
Hexagonal Architecture Acerola | 326 | 5 years ago | 1 | apache-2.0 | C# | |||||
An Hexagonal Architecture service template with DDD, CQRS, TDD and SOLID using .NET Core 2.0. All small features are testable and could be mocked. Adapters could be mocked or exchanged. | ||||||||||
Powerstrip | 306 | 7 years ago | 50 | apache-2.0 | Python | |||||
Powerstrip: A tool for prototyping Docker extensions | ||||||||||
Granite | 271 | 22 days ago | 38 | mit | Crystal | |||||
ORM Model with Adapters for mysql, pg, sqlite in the Crystal Language. | ||||||||||
Logspout Logstash | 269 | 2 | 3 years ago | May 29, 2021 | 11 | apache-2.0 | Go | |||
A minimalistic adapter for github.com/gliderlabs/logspout to write to Logstash | ||||||||||
Library Hexagonal | 184 | 7 months ago | 35 | Java | ||||||
An example application written in Hexagonal (Ports and Adapter) architecture | ||||||||||
Go Service Example | 147 | 2 | 2 months ago | 11 | May 30, 2021 | 18 | mit | Go | ||
Example Go service using go-swagger and Clean Architecture | ||||||||||
Botella | 62 | 4 years ago | 4 | January 25, 2017 | 10 | apache-2.0 | Go | |||
Bot (for Slack et al) with a special sauce: Docker plugins! |
Service registry bridge for Docker.
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
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.
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
Usage of /bin/registrator:
/bin/registrator [options] <registry URI>
-cleanup=false: Remove dangling services
-deregister="always": Deregister exited services "always" or "on-success"
-internal=false: Use internal ports instead of published ones
-ip="": IP for ports mapped to the host
-resync=0: Frequency with which services are resynchronized
-retry-attempts=0: Max retry attempts to establish a connection with the backend. Use -1 for infinite retries
-retry-interval=2000: Interval (in millisecond) between retry-attempts.
-tags="": Append tags for all registered services
-ttl=0: TTL for services (default is no expiry)
-ttl-refresh=0: Frequency with which service TTLs are refreshed
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.
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.
MIT