forked from asbubam/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (45 loc) · 818 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
45 lines (45 loc) · 818 Bytes
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
consul:
command: -server -bootstrap -rejoin
image: progrium/consul:latest
ports:
- "8300:8300"
- "8400:8400"
- "8500:8500"
- "8600:53/udp"
micro:
command: --registry_address=consul:8500 api --handler=rpc
image: microhq/micro:latest
links:
- consul
- api
ports:
- "8080:8080"
api:
build: ./api/hotel
command: --registry_address=consul:8500
links:
- consul
- auth
- geo
- profile
- rate
auth:
build: ./srv/auth
command: --registry_address=consul:8500
links:
- consul
geo:
build: ./srv/geo
command: --registry_address=consul:8500
links:
- consul
profile:
build: ./srv/profile
command: --registry_address=consul:8500
links:
- consul
rate:
build: ./srv/rate
command: --registry_address=consul:8500
links:
- consul