A simple load balancer presence manager for Docker containers on top of etcd(github.com)
github.com
A simple load balancer presence manager for Docker containers on top of etcd
https://github.com/tegioz/lbManager
1 comments
I wrote up a post with one way to do that: http://jasonwilder.com/blog/2014/03/25/automated-nginx-rever...
You can try nginx-proxy that wraps up the approach in a docker container. See https://registry.hub.docker.com/u/jwilder/nginx-proxy/.
Run that on your host and start your other containers on the host with VIRTUAL_HOST env variables and it will set up virtual host mappings via nginx automatically.
You can try nginx-proxy that wraps up the approach in a docker container. See https://registry.hub.docker.com/u/jwilder/nginx-proxy/.
Run that on your host and start your other containers on the host with VIRTUAL_HOST env variables and it will set up virtual host mappings via nginx automatically.
vulcand was designed to do this with etcd
https://github.com/mailgun/vulcand
https://github.com/mailgun/vulcand
Bonus points that via a trie, vulcand can scale in performance linearly to 10s of thousands (or more) of urls with 0 performance impact. (I requested that feature)
http://www.vulcanproxy.com/
http://www.vulcanproxy.com/
Docker injects environment variables with ip addresses, as well as setting the host name.
Hence it's very easy to use the environment variables and not worry about hostnames :-)
Eg
Eg
backend beChalet
option httpchk GET /
server chalet ${CHALET_PORT_80_TCP_ADDR}:${CHALET_PORT_80_TCP_PORT} maxconn 200 check
https://docs.docker.com/userguide/dockerlinks/#container-lin... has more details
Do you need a load balancer which can send requests upstream based on host name? (Nginx load balancing perhaps?) is that not a good use case for docker?