-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
81 lines (80 loc) · 1.92 KB
/
docker-compose.yaml
File metadata and controls
81 lines (80 loc) · 1.92 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
version: '3.7'
services:
nginx:
image: nginx:latest
ports:
- target: 80
published: 80
protocol: tcp
volumes:
- type: bind
source: ./nginx/nginx.conf
target: /etc/nginx/nginx.conf
depends_on:
- client
- server
client:
image: hazardd/client:v1
build:
context: ./client
ports:
- target: 8089
published: 8089
protocol: tcp
server:
image: hazardd/server:v1
build:
context: ./server
ports:
- target: 8084
published: 8084
protocol: tcp
notification:
image: hazardd/notification_server:v2
build:
context: ./notification_server
ports:
- target: 9000
published: 9000
protocol: tcp
prizegen:
image: hazardd/prizegen:big
build:
context: ./prizegen-big
ports:
- target: 9017
published: 9017
protocol: tcp
textgen:
image: hazardd/textgen:upper
build:
context: ./textgen-upper
ports:
- target: 9018
published: 9018
protocol: tcp
numgen:
image: hazardd/numgen:big
build:
context: ./numgen_big
ports:
- target: 9019
published: 9019
protocol: tcp
db-connector:
image: hazardd/db-connector:v1
build:
context: ./db_connector
ports:
- target: 5001
published: 5001
protocol: tcp
depends_on:
- mongo
- server
mongo:
image: mongo:latest
ports:
- target: 27017
published: 27017
protocol: tcp