首页 > 其他 > 详细

Consul & Registrator & Rails Service all together in separate Docker container

时间:2016-04-29 19:41:03      阅读:207      评论:0      收藏:0      [点我收藏+]

1.Start a container running Consul:

Here we use this image: https://hub.docker.com/r/progrium/consul/

$ docker run -it -h node -p 8500:8500 -p 53:53/udp progrium/consul -server -bootstrap -advertise  $DOCKER_IP


How to check that Consul is running:

Method1:

In Docker-Machine, run

$ docker ps

Will see running Consul container:

技术分享

We can also check the logs:

$ docker logs $CONTAINER_ID

技术分享

Method2:

Browse to $DOCKER_IP:8500 there is a dashboard to see the services that are registered in Consul:

技术分享



2.Start a container running Registrator

Here we use this image: https://hub.docker.com/r/gliderlabs/registrator/

Registrator automatically registers and deregisters services for any Docker container by inspecting containers as they come online.

Registrator watches for new Docker containers and inspects them to determine what services they provide. For our purposes, a service is anything listening on a port. Any services Registrator finds on a container, they will be added to a service registry, such as Consul or etcd.

$ docker run -it -v /var/run/docker.sock:/tmp/docker.sock -h $DOCKER_IP gliderlabs/registrator consul://$DOCKER_IP:8500


How to check that Registrator is running?

In Docker-Machine, run

$ docker ps

Will see running Registrator container:

技术分享

We can also check the logs:

$ docker logs $CONTAINER_ID

技术分享



3. Start a web service and let Registrator automatically register it on Consul

In command line, into a directory that has proper rails app, Dockerfile and docker-compose.yml file in place.

$ docker-compose build
$ docker-compose run web bundle exec rake sample_data:populate
$ docker-compose run -p 3000 -e ‘SERVICE_NAME=romui-web‘ web rails s

How to check that this service is registered?

Method1:

Use Consul API:

$ curl $DOCKER_IP/v1/catalog/services

技术分享

We can check the service details using Consul HTTP API:

$ curl http://localhost:8500/v1/catalog/service/$SERVICE_NAME

技术分享

Method2:

Check in Consul UI:

技术分享


4. Find the IP address and port of the service from Consul UI, and start using the service.

技术分享

Now we are ready to access the service from browser:

技术分享


Consul & Registrator & Rails Service all together in separate Docker container

原文:http://blog.csdn.net/sunny_forever/article/details/51228437

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!