-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (56 loc) · 1.89 KB
/
docker-compose.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
version: '3.1'
services:
consignment-cli:
build: ./consignment-cli
environment:
MICRO_REGISTRY: "mdns"
depends_on:
- consignment-service
user-cli:
build: ./user-cli
environment:
MICRO_REGISTRY: "mdns"
depends_on:
- user-service
consignment-service:
build: ./consignment-service
ports:
- 50051:50051
environment:
MICRO_ADRESS: ":50051"
MICRO_REGISTRY: "mdns"
DB_HOST: 'datastore:27017'
depends_on:
- datastore
vessel-service:
build: ./vessel-service
ports:
- 50052:50051
environment:
MICRO_ADDRESS: ":5052"
MICRO_REGISTRY: "mdns"
DB_HOST: "datastore:27017"
depends_on:
- datastore
user-service:
build: ./user-service
ports:
- 50053:50051
environment:
MICRO_ADDRESS: ":5053"
MICRO_REGISTRY: "mdns"
DB_NAME: "postgres"
DB_HOST: "database"
DB_PORT: "5432"
DB_USER: "postgres"
DB_PASSWORD: "postgres"
depends_on:
- database
datastore:
image: mongo
ports:
- 27017:27017
database:
image: postgres
ports:
- 5432:5432