-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
88 lines (74 loc) · 1.79 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
78
79
80
81
82
83
84
85
86
87
88
version: '3'
networks:
spring-cloud-network:
bdd-network:
volumes:
tci-database-volume:
tci-projects-volume:
services:
travelci-database:
image: travelci/tci-database:latest
networks:
- bdd-network
environment:
- POSTGRES_DB=travelci
volumes:
- tci-database-volume:/var/lib/postgresql/data
travelci-config:
image: travelci/tci-config:latest
networks:
- spring-cloud-network
travelci-eureka:
image: travelci/tci-eureka:latest
networks:
- spring-cloud-network
ports:
- "${TCI_EUREKA_PORT}:8000"
travelci-zuul:
image: travelci/tci-zuul:latest
networks:
- spring-cloud-network
ports:
- "${TCI_ZUUL_PORT}:8001"
travelci-webhook:
image: travelci/tci-webhook:latest
networks:
- spring-cloud-network
travelci-projects:
image: travelci/tci-projects:latest
networks:
- spring-cloud-network
- bdd-network
volumes:
- tci-projects-volume:/usr/app/travel-ci
travelci-projects2:
image: travelci/tci-projects:latest
networks:
- spring-cloud-network
- bdd-network
volumes:
- tci-projects-volume:/usr/app/travel-ci
travelci-commands:
image: travelci/tci-commands:latest
networks:
- spring-cloud-network
- bdd-network
travelci-docker-runner:
image: travelci/tci-docker-runner:latest
networks:
- spring-cloud-network
volumes:
- tci-projects-volume:/usr/app/travel-ci
travelci-logger:
image: travelci/tci-logger:latest
networks:
- spring-cloud-network
- bdd-network
travelci-notifications:
image: travelci/tci-notifications:latest
networks:
- spring-cloud-network
travelci-webapp:
image: travelci/tci-webapp:latest
ports:
- "${TCI_WEBAPP_PORT}:80"