Skip to content

Nginx load balancing container which uses Consul for service discovery and health monitoring

Notifications You must be signed in to change notification settings

fvigotti/consul-nginx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Consul Nginx

This Docker container is setup to run Nginx with Consul for service discovery and health monitoring.

It has also been optimized to run on Joyent's Triton, however it will always also support strait Docker and boot2docker.

Running

It can be run on its own simply via:

docker run -d  -p 8400 -p 8500 -p 8600 --name consul progrium/consul -server -bootstrap -ui-dir /ui
docker run -d --name lb1 --link consul:consul corbinu/consul-nginx

docker exec -it lb1 nginx-bootstrap

Consul will UI will be available on port mapped to 8500

Consul notes

Bootstrapping, Consul clusters, and the details about adding and removing nodes. The CLI and HTTP API are also documented.

Check for registered instances of a named service

curl -v http://consul:8500/v1/catalog/service/nginx | json -aH ServiceAddress

Register an instance of a service

export MYIP=$(ip addr show eth0 | grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}')
curl http://consul:8500/v1/agent/service/register -d "$(printf '{"ID": "nginx-%s","Name": "nginx","Address": "%s"}' $MYIP $MYIP)"

About

Nginx load balancing container which uses Consul for service discovery and health monitoring

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%