-
Notifications
You must be signed in to change notification settings - Fork 2
/
infra-kv-consul-v1.yml
63 lines (51 loc) · 1.74 KB
/
infra-kv-consul-v1.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##########################################################################################
# consul service:
#
# Web UI:
# - http://localhost:8500/ui
#
# lib & sdk:
# - https://www.consul.io/api/libraries-and-sdks.html
# - python: https://github.com/cablehead/python-consul
#
# ref:
# - https://github.com/hashicorp/consul
# - https://github.com/hashicorp/consul/blob/master/demo/docker-compose-cluster/docker-compose.yml
#
##########################################################################################
version: '3'
services:
#################### agent ##############################
consul-agent-1: &consul-agent
image: consul:latest
networks:
- consul-base
command: "agent -retry-join consul-server-bootstrap -client 0.0.0.0"
consul-agent-2:
<<: *consul-agent
consul-agent-3:
<<: *consul-agent
#################### server ##############################
consul-server-1: &consul-server
<<: *consul-agent
command: "agent -server -retry-join consul-server-bootstrap -client 0.0.0.0"
consul-server-2:
<<: *consul-server
#################### web ui ##############################
consul-server-bootstrap:
<<: *consul-agent
ports:
- "8400:8400"
- "8500:8500"
- "8600:8600"
environment:
# new web ui:
# - v1.1.0
# - https://www.consul.io/intro/getting-started/ui.html#how-to-use-the-new-ui
CONSUL_UI_BETA: 1 # 0
command: "agent -server -bootstrap-expect 3 -ui -client 0.0.0.0"
##########################################################################################
# resource
##########################################################################################
networks:
consul-base: