-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfra-registrator.yml
46 lines (37 loc) · 1.18 KB
/
infra-registrator.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
##########################################################################################
# consul service:
#
# notes:
# - docker + consul + registrator
#
#
# ref:
# - https://kevinguo.me/2017/09/01/docker-consul-consul-template-registrator-nginx/
# - https://github.com/osowski/registrator-sample/blob/master/docker-compose.yml
# - https://github.com/anthcourtney/docker-consul-registrator-basic/blob/master/docker-compose.yml
#
##########################################################################################
version: '2'
services:
registrator:
image: gliderlabs/registrator:latest
volumes:
- "/var/run/docker.sock:/tmp/docker.sock"
command: "consul://0.0.0.0:8500"
# command: consul://localhost:8500
# restart: on-failure
# depends_on:
# - consul
# consul:
# container_name: consul
# image: consul
# ports:
# - "8300"
# - "8400"
# - "8500"
# restart: always
##########################################################################################
# resource
##########################################################################################
networks:
consul-base: