-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
81 lines (74 loc) · 1.67 KB
/
docker-compose.yml
File metadata and controls
81 lines (74 loc) · 1.67 KB
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
version: '3.4'
services:
broker-db:
container_name: broker-db
image: mcr.microsoft.com/mssql/server:latest
ports:
- "${database_port_on_host}:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=${database_sa_password}
volumes:
- broker-data:/var/opt/mssql/
discovery:
container_name: discovery
image: discovery-service:${service_version}
build: ./discovery
ports:
- "8082:8082"
links:
- broker-db
env_file:
- 'service_using_broker.env'
session:
container_name: session
image: session-service:${service_version}
build: ./session
ports:
- "8081:8081"
links:
- broker-db
- discovery
env_file:
- 'service_using_broker.env'
environment:
- contenturl=http://session:8081/content.svc
deployer:
container_name: deployer
image: deployer-service:${service_version}
build: ./deployer
ports:
- "8084:8084"
links:
- broker-db
- discovery
env_file:
- 'service_using_broker.env'
environment:
- deployerurl=http://deployer:8084/httpupload
- binaryPath=./binaries
- queuePath=./queue
preview:
container_name: preview
image: preview-service:${service_version}
build: ./preview
ports:
- "8083:8083"
links:
- broker-db
- discovery
env_file:
- 'service_using_broker.env'
environment:
- previewurl=http://preview:8083/ws/preview.svc
website:
container_name: website
image: website-java:${service_version}
build: ./website-java
ports:
- "8888:8080"
links:
- session
- discovery
volumes:
broker-data: