-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathdocker-compose.yml
77 lines (77 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "3.7"
services:
rabbitmq:
container_name: rabbitmq
image: rabbitmq:4
ports:
- "5672:5672"
postgres:
container_name: postgres
image: postgres
environment:
POSTGRES_USER: trx
POSTGRES_PASSWORD: trx123
POSTGRES_DB: trx
ports:
- "5432:5432"
discovery-server:
image: springboot/discovery-server:1.0-SNAPSHOT
ports:
- "8761:8761"
healthcheck:
test: curl --fail http://localhost:8761/eureka/v2/apps || exit 1
interval: 4s
timeout: 2s
retries: 3
account-service:
image: springboot/account-service:1.0-SNAPSHOT
ports:
- "8080"
depends_on:
discovery-server:
condition: service_healthy
links:
- discovery-server
- rabbitmq
- postgres
environment:
SPRING_PROFILES_ACTIVE: docker
product-service:
image: springboot/product-service:1.0-SNAPSHOT
ports:
- "8080"
depends_on:
discovery-server:
condition: service_healthy
links:
- discovery-server
- rabbitmq
- postgres
environment:
SPRING_PROFILES_ACTIVE: docker
order-service:
image: springboot/order-service:1.0-SNAPSHOT
ports:
- "8080"
depends_on:
discovery-server:
condition: service_healthy
links:
- discovery-server
- rabbitmq
- postgres
environment:
SPRING_PROFILES_ACTIVE: docker
transaction-server:
image: springboot/transaction-server:1.0-SNAPSHOT
ports:
- "8080"
depends_on:
discovery-server:
condition: service_healthy
links:
- discovery-server
- rabbitmq
- postgres
environment:
SPRING_PROFILES_ACTIVE: docker